|
DIY
3.0
data-parallel out-of-core C++ library
|
#include <diy/fmt/format.h>
Public Member Functions | |
| 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_ |
A buffer supporting a subset of std::vector's operations.
| void fmt::Buffer< T >::append | ( | const U * | begin, |
| const U * | end | ||
| ) |
Appends data to the end of the buffer.
|
inline |
Returns the capacity of this buffer.
|
protectedpure virtual |
Increases the buffer capacity to hold at least size elements updating ptr_ and capacity_.
Implemented in fmt::internal::FixedBuffer< Char >, fmt::internal::MemoryBuffer< T, SIZE, Allocator >, and fmt::internal::MemoryBuffer< Char, internal::INLINE_BUFFER_SIZE, Allocator >.
|
inline |
Reserves space to store at least capacity elements.
|
inline |
Resizes the buffer. If T is a POD type new elements may not be initialized.
|
inline |
Returns the size of this buffer.
1.8.6