1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

AK: Add StringView::copy_characters_to_buffer()

This commit is contained in:
Tim Schumacher 2022-03-29 02:52:20 +02:00 committed by Andreas Kling
parent 3237efc661
commit 8209c2b570
2 changed files with 14 additions and 0 deletions

View file

@ -192,6 +192,8 @@ public:
[[nodiscard]] StringView substring_view_starting_from_substring(StringView substring) const;
[[nodiscard]] StringView substring_view_starting_after_substring(StringView substring) const;
[[nodiscard]] bool copy_characters_to_buffer(char* buffer, size_t buffer_size) const;
constexpr bool operator==(char const* cstring) const
{
if (is_null())