1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 17:07:35 +00:00

AK: Add StringBuilder::append(Utf32View)

This encodes the incoming UTF-32 sequence as UTF-8.
This commit is contained in:
Andreas Kling 2020-05-17 20:03:03 +02:00
parent bc6f469544
commit 86242f9c18
2 changed files with 28 additions and 0 deletions

View file

@ -40,6 +40,7 @@ public:
~StringBuilder() {}
void append(const StringView&);
void append(const Utf32View&);
void append(char);
void append(const char*, size_t);
void appendf(const char*, ...);