mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:37:46 +00:00
AK: Improve the API of StringBuilder
This commit is contained in:
parent
0433c0780d
commit
d8df9c510c
2 changed files with 9 additions and 9 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue