Clear()
Clears the string writer.
IsTruncated() const
Returns whether the output is truncated.
GetLength() const
Gets the length of the wanted string. Similar to `strlen()` the length does not include the null character at the end of the string.
GetSize() const
Returns the size (number of chars) in the buffer.
Append()
Appends `printf()` style formatted data to the buffer.
AppendVarArgs()
Appends `printf()` style formatted data to the buffer.
AppendHexBytes()
Appends an array of bytes in hex representation (using "%02x" style) to the buffer.
AppendCharMultipleTimes()
Appends a given character a given number of times.
ConvertToLowercase()
Converts all uppercase letter characters in the string to lowercase.
ConvertToUppercase()
Converts all lowercase letter characters in the string to uppercase.