Ark Server API (ASE) - Wiki
|
#include <string.h>
Public Types | |
typedef std::basic_string< Char, std::char_traits< Char >, Allocator > | StringType |
Public Member Functions | |
StringBuffer (const Allocator &allocator=Allocator()) | |
void | move_to (StringType &str) |
Public Member Functions inherited from fmt::Buffer< Char > | |
virtual | ~Buffer () |
std::size_t | size () const |
std::size_t | capacity () const |
void | resize (std::size_t new_size) |
void | reserve (std::size_t capacity) |
void | clear () FMT_NOEXCEPT |
void | push_back (const Char &value) |
void | append (const U *begin, const U *end) |
Char & | operator[] (std::size_t index) |
const Char & | operator[] (std::size_t index) const |
Protected Member Functions | |
virtual void | grow (std::size_t size) FMT_OVERRIDE |
Protected Member Functions inherited from fmt::Buffer< Char > | |
Buffer (Char *ptr=FMT_NULL, std::size_t capacity=0) | |
Private Attributes | |
StringType | data_ |
Additional Inherited Members | |
Protected Attributes inherited from fmt::Buffer< Char > | |
Char * | ptr_ |
std::size_t | size_ |
std::size_t | capacity_ |
typedef std::basic_string<Char, std::char_traits<Char>, Allocator> fmt::internal::StringBuffer< Char, Allocator >::StringType |
|
inlineexplicit |
|
inlineprotectedvirtual |
\rst Increases the buffer capacity to hold at least size elements updating ptr_
and capacity_
. \endrst
Implements fmt::Buffer< Char >.
|
inline |
|
private |