WPILibC++ 2023.4.3-108-ge5452e3
|
\rst A contiguous memory buffer with an optional growing ability. More...
#include </home/runner/work/allwpilib/allwpilib/wpiutil/src/main/native/thirdparty/fmtlib/include/fmt/core.h>
Public Types | |
using | value_type = T |
using | const_reference = const T & |
Public Member Functions | |
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. More... | |
constexpr auto | capacity () const noexcept -> size_t |
Returns the capacity of this buffer. More... | |
FMT_CONSTEXPR auto | data () noexcept -> T * |
Returns a pointer to the buffer data. More... | |
FMT_CONSTEXPR auto | data () const 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 Idx > | |
FMT_CONSTEXPR auto | operator[] (Idx index) -> T & |
template<typename Idx > | |
FMT_CONSTEXPR auto | operator[] (Idx index) const -> const T & |
Protected Member Functions | |
buffer (size_t sz) noexcept | |
FMT_CONSTEXPR20 | buffer (T *p=nullptr, size_t sz=0, size_t cap=0) noexcept |
FMT_CONSTEXPR20 | ~buffer ()=default |
buffer (buffer &&)=default | |
FMT_CONSTEXPR void | set (T *buf_data, size_t buf_capacity) noexcept |
Sets the buffer data and capacity. More... | |
virtual FMT_CONSTEXPR20 void | grow (size_t capacity)=0 |
Increases the buffer capacity to hold at least capacity elements. More... | |
\rst A contiguous memory buffer with an optional growing ability.
It is an internal class and shouldn't be used directly, only via ~fmtbasic_memory_buffer
. \endrst
using buffer< T >::const_reference = const T& |
using buffer< T >::value_type = T |
|
inlineprotectednoexcept |
|
protecteddefault |
void buffer< T >::append | ( | const U * | begin, |
const U * | end | ||
) |
Appends data to the end of the buffer.
|
inlinenoexcept |
|
inlinenoexcept |
|
inlineconstexprnoexcept |
Returns the capacity of this buffer.
|
inline |
Clears this buffer.
|
inlinenoexcept |
Returns a pointer to the buffer data.
|
inlinenoexcept |
Returns a pointer to the buffer data.
|
inlinenoexcept |
|
inlinenoexcept |
|
protectedpure virtual |
Increases the buffer capacity to hold at least capacity elements.
Implemented in iterator_buffer< std::back_insert_iterator< Container >, enable_if_t< is_contiguous< Container >::value, typename Container::value_type > >, iterator_buffer< OutputIt, T, Traits >, iterator_buffer< T *, T, fixed_buffer_traits >, iterator_buffer< T *, T >, and counting_buffer< T >.
|
inline |
|
inline |
|
inline |
|
inlineprotectednoexcept |
Sets the buffer data and capacity.
|
inlineconstexprnoexcept |
Returns the size of this buffer.
|
inline |
|
inline |