AK: Improve the API of StringBuilder

This commit is contained in:
howar6hill 2020-03-08 20:44:38 +08:00 committed by Andreas Kling
commit d8df9c510c
Notes: sideshowbarker 2024-07-19 17:37:15 +09:00
2 changed files with 9 additions and 9 deletions

View file

@ -45,9 +45,9 @@ public:
void appendf(const char*, ...);
void appendvf(const char*, va_list);
String build();
String to_string();
ByteBuffer to_byte_buffer();
String build() const;
String to_string() const;
ByteBuffer to_byte_buffer() const;
StringView string_view() const;
void clear();