Potato Engine
Hobby Game Engine Project
|
Public Member Functions | |
string_writer (size_type capacity) | |
string_writer (string_writer const &)=delete | |
string_writer & | operator= (string_writer const &)=delete |
bool | empty () const noexcept |
operator bool () const noexcept | |
size_type | size () const noexcept |
size_type | capacity () const |
const_pointer | data () const noexcept |
const_pointer | c_str () const noexcept |
operator string_view () const noexcept | |
void | write (value_type ch) |
void | write (const_pointer data, size_type length) |
void | write (string_view str) |
void | push_back (value_type ch) |
void | reserve (size_type capacity) |
span< value_type > | acquire (size_type size) |
void | commit (span< value_type const > data) |
void | resize (size_type newSize, value_type fill=' ') |
void | clear () |
void | reset () |
string | to_string () const & |
string | to_string () && |