Flow123d
master-f44eb46
|
#include <format.h>
Public Member Functions | |
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 T &value) |
template<typename U > | |
void | append (const U *begin, const U *end) |
T & | operator[] (std::size_t index) |
const T & | operator[] (std::size_t index) const |
Protected Member Functions | |
Buffer (T *ptr=0, std::size_t capacity=0) | |
virtual void | grow (std::size_t size)=0 |
Protected Attributes | |
T * | ptr_ |
std::size_t | size_ |
std::size_t | capacity_ |
Private Member Functions | |
FMT_DISALLOW_COPY_AND_ASSIGN (Buffer) | |
\rst A buffer supporting a subset of std::vector
's operations. \endrst
|
inlineprotected |
|
inlinevirtual |
void fmt::Buffer< T >::append | ( | const U * | begin, |
const U * | end | ||
) |
|
inline |
|
inline |
|
private |
|
protectedpure virtual |
\rst Increases the buffer capacity to hold at least size elements updating ptr_
and capacity_
. \endrst
Implemented in fmt::internal::FixedBuffer< Char >, fmt::internal::MemoryBuffer< T, SIZE, Allocator >, and fmt::internal::MemoryBuffer< Char, internal::INLINE_BUFFER_SIZE, std::allocator< Char > >.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
protected |
|
protected |
|
protected |