supereight
Loading...
Searching...
No Matches
Classes | Public Types | Public Member Functions | Static Public Attributes | List of all members
se::detail::ArrayAllocator< T, N > Class Template Reference

An allocator using a static array of N elements of type T. More...

#include <bounded_vector.hpp>

Classes

struct  rebind
 

Public Types

typedef T value_type
 
typedef std::true_type propagate_on_container_copy_assignment
 
typedef std::true_type propagate_on_container_move_assignment
 
typedef std::true_type propagate_on_container_swap
 

Public Member Functions

Tallocate (std::size_t n)
 
void deallocate (T *, std::size_t)
 
template<typename U , std::size_t M>
bool operator== (const ArrayAllocator< U, M > &rhs)
 
template<typename U , std::size_t M>
bool operator!= (const ArrayAllocator< U, M > &rhs)
 

Static Public Attributes

static constexpr std::size_t capacity = N
 

Detailed Description

template<typename T, std::size_t N>
class se::detail::ArrayAllocator< T, N >

An allocator using a static array of N elements of type T.

Warning
It's not expected to work correctly for any container other than std::vector.

Member Typedef Documentation

◆ value_type

template<typename T , std::size_t N>
typedef T se::detail::ArrayAllocator< T, N >::value_type

◆ propagate_on_container_copy_assignment

template<typename T , std::size_t N>
typedef std::true_type se::detail::ArrayAllocator< T, N >::propagate_on_container_copy_assignment

◆ propagate_on_container_move_assignment

template<typename T , std::size_t N>
typedef std::true_type se::detail::ArrayAllocator< T, N >::propagate_on_container_move_assignment

◆ propagate_on_container_swap

template<typename T , std::size_t N>
typedef std::true_type se::detail::ArrayAllocator< T, N >::propagate_on_container_swap

Member Function Documentation

◆ allocate()

template<typename T , std::size_t N>
T * se::detail::ArrayAllocator< T, N >::allocate ( std::size_t  n)
inline

◆ deallocate()

template<typename T , std::size_t N>
void se::detail::ArrayAllocator< T, N >::deallocate ( T ,
std::size_t   
)
inline

◆ operator==()

template<typename T , std::size_t N>
template<typename U , std::size_t M>
bool se::detail::ArrayAllocator< T, N >::operator== ( const ArrayAllocator< U, M > &  rhs)
inline

◆ operator!=()

template<typename T , std::size_t N>
template<typename U , std::size_t M>
bool se::detail::ArrayAllocator< T, N >::operator!= ( const ArrayAllocator< U, M > &  rhs)
inline

Member Data Documentation

◆ capacity

template<typename T , std::size_t N>
constexpr std::size_t se::detail::ArrayAllocator< T, N >::capacity = N
staticconstexpr

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