A contiguous memory buffer with an optional growing ability. It is an internal class and shouldn't be used directly, only via memory_buffer.
More...
#include "/home/sirfuser/devel/STIRdistrib/STIR/external_helpers/fmt/include/fmt/base.h"
|
|
using | value_type = T |
| |
|
using | const_reference = const T & |
| |
|
|
| buffer (const buffer &)=delete |
| |
|
void | operator= (const buffer &)=delete |
| |
|
auto | begin () noexcept -> T * |
| |
|
auto | end () noexcept -> T * |
| |
|
auto | begin () const noexcept -> const T * |
| |
|
auto | end () const noexcept -> const T * |
| |
|
constexpr auto | size () const noexcept -> size_t |
| | Returns the size of this buffer.
|
| |
|
constexpr auto | capacity () const noexcept -> size_t |
| | Returns the capacity of this buffer.
|
| |
|
FMT_CONSTEXPR auto | data () noexcept -> T * |
| | Returns a pointer to the buffer data (not null-terminated).
|
| |
|
FMT_CONSTEXPR auto | data () const noexcept -> const T * |
| |
|
FMT_CONSTEXPR void | clear () |
| | Clears this buffer.
|
| |
|
FMT_CONSTEXPR void | try_resize (size_t count) |
| |
|
FMT_CONSTEXPR void | try_reserve (size_t new_capacity) |
| |
|
FMT_CONSTEXPR void | push_back (const T &value) |
| |
|
template<typename U > |
| FMT_CONSTEXPR20 void | append (const U *begin, const U *end) |
| | Appends data to the end of the buffer.
|
| |
|
template<typename Idx > |
| FMT_CONSTEXPR auto | operator[] (Idx index) -> T & |
| |
|
template<typename Idx > |
| FMT_CONSTEXPR auto | operator[] (Idx index) const -> const T & |
| |
|
|
| FMT_MSC_WARNING (suppress :26495) FMT_CONSTEXPR buffer(grow_fun grow |
| |
|
size_t sz | capacity_ (sz) |
| |
|
size_t sz | grow_ (grow) |
| |
|
constexpr | buffer (grow_fun grow, T *p=nullptr, size_t sz=0, size_t cap=0) noexcept |
| |
|
| buffer (buffer &&)=default |
| |
|
FMT_CONSTEXPR void | set (T *buf_data, size_t buf_capacity) noexcept |
| | Sets the buffer data and capacity.
|
| |
|
|
size_t sz | noexcept: size_(sz) |
| |
template<typename T>
class detail::buffer< T >
A contiguous memory buffer with an optional growing ability. It is an internal class and shouldn't be used directly, only via memory_buffer.
The documentation for this class was generated from the following file:
- /home/sirfuser/devel/STIRdistrib/STIR/external_helpers/fmt/include/fmt/base.h