Flow123d  master-f44eb46
Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | List of all members
fmt::Buffer< T > Class Template Referenceabstract

#include <format.h>

Inheritance diagram for fmt::Buffer< T >:
Inheritance graph
[legend]

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)
 

Detailed Description

template<typename T>
class fmt::Buffer< T >

\rst A buffer supporting a subset of std::vector's operations. \endrst

Definition at line 588 of file format.h.

Constructor & Destructor Documentation

◆ Buffer()

template<typename T >
fmt::Buffer< T >::Buffer ( T *  ptr = 0,
std::size_t  capacity = 0 
)
inlineprotected

Definition at line 597 of file format.h.

◆ ~Buffer()

template<typename T >
virtual fmt::Buffer< T >::~Buffer ( )
inlinevirtual

Definition at line 609 of file format.h.

Member Function Documentation

◆ append()

template<typename T >
template<typename U >
void fmt::Buffer< T >::append ( const U *  begin,
const U *  end 
)

Appends data to the end of the buffer.

Definition at line 654 of file format.h.

Here is the caller graph for this function:

◆ capacity()

template<typename T >
std::size_t fmt::Buffer< T >::capacity ( ) const
inline

Returns the capacity of this buffer.

Definition at line 615 of file format.h.

Here is the caller graph for this function:

◆ clear()

template<typename T >
void fmt::Buffer< T >::clear ( )
inline

Definition at line 636 of file format.h.

Here is the caller graph for this function:

◆ FMT_DISALLOW_COPY_AND_ASSIGN()

template<typename T >
fmt::Buffer< T >::FMT_DISALLOW_COPY_AND_ASSIGN ( Buffer< T >  )
private

◆ grow()

template<typename T >
virtual void fmt::Buffer< T >::grow ( std::size_t  size)
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 > >.

◆ operator[]() [1/2]

template<typename T >
T& fmt::Buffer< T >::operator[] ( std::size_t  index)
inline

Definition at line 648 of file format.h.

◆ operator[]() [2/2]

template<typename T >
const T& fmt::Buffer< T >::operator[] ( std::size_t  index) const
inline

Definition at line 649 of file format.h.

◆ push_back()

template<typename T >
void fmt::Buffer< T >::push_back ( const T &  value)
inline

Definition at line 638 of file format.h.

Here is the caller graph for this function:

◆ reserve()

template<typename T >
void fmt::Buffer< T >::reserve ( std::size_t  capacity)
inline

\rst Reserves space to store at least capacity elements. \endrst

Definition at line 631 of file format.h.

Here is the caller graph for this function:

◆ resize()

template<typename T >
void fmt::Buffer< T >::resize ( std::size_t  new_size)
inline

Resizes the buffer. If T is a POD type new elements may not be initialized.

Definition at line 620 of file format.h.

Here is the caller graph for this function:

◆ size()

template<typename T >
std::size_t fmt::Buffer< T >::size ( ) const
inline

Returns the size of this buffer.

Definition at line 612 of file format.h.

Here is the caller graph for this function:

Member Data Documentation

◆ capacity_

template<typename T >
std::size_t fmt::Buffer< T >::capacity_
protected

Definition at line 595 of file format.h.

◆ ptr_

template<typename T >
T* fmt::Buffer< T >::ptr_
protected

Definition at line 593 of file format.h.

◆ size_

template<typename T >
std::size_t fmt::Buffer< T >::size_
protected

Definition at line 594 of file format.h.


The documentation for this class was generated from the following file: