QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::allocator_testing::allocator< T, A > Struct Template Reference

#include "allocator_testing.hpp"

Inheritance diagram for quickcpplib::_xxx::allocator_testing::allocator< T, A >:

Classes

struct  rebind
 

Public Member Functions

 allocator ()
 
 allocator (const allocator &o)
 
template<class U >
 allocator (const allocator< U > &o)
 
A::pointer allocate (typename A::size_type n, typename std::allocator< void >::const_pointer hint=0)
 

Public Attributes

elements
 STL member.
 

Constructor & Destructor Documentation

◆ allocator() [1/3]

template<class T , class A = std::allocator<T>>
quickcpplib::_xxx::allocator_testing::allocator< T, A >::allocator ( )
inline
68{}

◆ allocator() [2/3]

template<class T , class A = std::allocator<T>>
quickcpplib::_xxx::allocator_testing::allocator< T, A >::allocator ( const allocator< T, A > &  o)
inline
70 : A(o)
71 {
72 }

◆ allocator() [3/3]

template<class T , class A = std::allocator<T>>
template<class U >
quickcpplib::_xxx::allocator_testing::allocator< T, A >::allocator ( const allocator< U > &  o)
inline
75 : A(o)
76 {
77 }

Member Function Documentation

◆ allocate()

template<class T , class A = std::allocator<T>>
A::pointer quickcpplib::_xxx::allocator_testing::allocator< T, A >::allocate ( typename A::size_type  n,
typename std::allocator< void >::const_pointer  hint = 0 
)
inline
79 {
80 config &c = get_config();
81 size_t count = ++c.count;
82 if(count >= c.fail_from || count == c.fail_at)
83#ifdef __cpp_exceptions
84 throw std::bad_alloc();
85#else
86 abort();
87#endif
88 return A::allocate(n, hint);
89 }
constexpr Combined c
Definition test_optional.cpp:1460

Member Data Documentation

◆ elements

T std::allocator< T >::elements
inherited

STL member.


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