1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

AK: Add StringBuilder::append_codepoint(u32)

Also, implement append(Utf32View) using it.
This commit is contained in:
Andreas Kling 2020-06-04 21:04:31 +02:00
parent 0bc92c259d
commit d4bbc00901
2 changed files with 25 additions and 19 deletions

View file

@ -42,6 +42,7 @@ public:
void append(const StringView&);
void append(const Utf32View&);
void append(char);
void append_codepoint(u32);
void append(const char*, size_t);
void appendf(const char*, ...);
void appendvf(const char*, va_list);