|
|
auto | count () -> size_t |
| |
|
| buffer (const buffer &)=delete |
| |
|
void | operator= (const buffer &)=delete |
| |
|
auto | begin () FMT_NOEXCEPT -> T * |
| |
|
auto | end () FMT_NOEXCEPT -> T * |
| |
|
auto | begin () const FMT_NOEXCEPT -> const T * |
| |
|
auto | end () const FMT_NOEXCEPT -> const T * |
| |
| constexpr auto | size () const FMT_NOEXCEPT -> size_t |
| | Returns the size of this buffer. More...
|
| |
| constexpr auto | capacity () const FMT_NOEXCEPT -> size_t |
| | Returns the capacity of this buffer. More...
|
| |
| FMT_CONSTEXPR auto | data () FMT_NOEXCEPT -> T * |
| | Returns a pointer to the buffer data. More...
|
| |
| FMT_CONSTEXPR auto | data () const FMT_NOEXCEPT -> const T * |
| | Returns a pointer to the buffer data. More...
|
| |
| void | clear () |
| | Clears this buffer. More...
|
| |
|
FMT_CONSTEXPR20 void | try_resize (size_t count) |
| |
|
FMT_CONSTEXPR20 void | try_reserve (size_t new_capacity) |
| |
|
FMT_CONSTEXPR20 void | push_back (const T &value) |
| |
| template<typename U > |
| void | append (const U *begin, const U *end) |
| | Appends data to the end of the buffer. More...
|
| |
|
template<typename I > |
| FMT_CONSTEXPR auto | operator[] (I index) -> T & |
| |
|
template<typename I > |
| FMT_CONSTEXPR auto | operator[] (I index) const -> const T & |
| |