1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

AK: Add two starts_with{bytes,}() APIs to String

This commit is contained in:
Ali Mohammad Pur 2023-02-18 10:04:37 +03:30 committed by Ali Mohammad Pur
parent 3a5802540e
commit 79e4027480
2 changed files with 13 additions and 0 deletions

View file

@ -109,6 +109,9 @@ public:
// Compare this String against another string with caseless matching. Using this method requires linking LibUnicode into your application.
ErrorOr<bool> equals_ignoring_case(String const&) const;
bool starts_with(u32 code_point) const;
bool starts_with_bytes(StringView) const;
// Creates a substring with a deep copy of the specified data window.
ErrorOr<String> substring_from_byte_offset(size_t start, size_t byte_count) const;
ErrorOr<String> substring_from_byte_offset(size_t start) const;