Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::scoped_allocator_adaptor(3) [debian man page]

std::scoped_allocator_adaptor< _OuterAlloc, _InnerAllocs >(3cxx)		  std::scoped_allocator_adaptor< _OuterAlloc, _InnerAllocs >(3cxx)

NAME
std::scoped_allocator_adaptor< _OuterAlloc, _InnerAllocs > - SYNOPSIS
Inherits _OuterAlloc. Public Types typedef __traits::const_pointer const_pointer typedef __traits::const_void_pointer const_void_pointer" typedef __traits::difference_type difference_type typedef __inner_type::__type inner_allocator_type typedef _OuterAlloc outer_allocator_type typedef __traits::pointer pointer typedef conditional< __any_of < __propagate_on_copy, _OuterAlloc, _InnerAllocs...> ::value, true_type, false_type > ::type propagate_on_container_copy_assignment" typedef conditional< __any_of < __propagate_on_move, _OuterAlloc, _InnerAllocs...> ::value, true_type, false_type > ::type propagate_on_container_move_assignment" typedef conditional< __any_of < __propagate_on_swap, _OuterAlloc, _InnerAllocs...> ::value, true_type, false_type > ::type propagate_on_container_swap" typedef __traits::size_type size_type typedef __traits::value_type value_type typedef __traits::void_pointer void_pointer Public Member Functions template<typename _Outer2 > scoped_allocator_adaptor (_Outer2 &&__outer, const _InnerAllocs &...__inner) scoped_allocator_adaptor (const scoped_allocator_adaptor &__other) scoped_allocator_adaptor (scoped_allocator_adaptor &&__other) template<typename _Outer2 > scoped_allocator_adaptor (const scoped_allocator_adaptor< _Outer2, _InnerAllocs...> &__other) template<typename _Outer2 > scoped_allocator_adaptor (scoped_allocator_adaptor< _Outer2, _InnerAllocs...> &&__other) pointer allocate (size_type __n) pointer allocate (size_type __n, const_void_pointer __hint) template<typename _Tp , typename... _Args> void construct (_Tp *__p, _Args &&...__args) void deallocate (pointer __p, size_type __n) template<typename _Tp > void destroy (_Tp *__p) inner_allocator_type & inner_allocator () noexcept const inner_allocator_type & inner_allocator () const noexcept size_type max_size () const outer_allocator_type & outer_allocator () noexcept const outer_allocator_type & outer_allocator () const noexcept scoped_allocator_adaptor select_on_container_copy_construction () const Friends template<typename _Outer , typename... _Inner> class scoped_allocator_adaptor template<typename... > class __inner_type_impl template<typename _OutA1 , typename _OutA2 , typename... _InA> bool operator== (const scoped_allocator_adaptor< _OutA1, _InA...> &__a, const scoped_allocator_adaptor< _OutA2, _InA...> &__b) noexcept Detailed Description template<typename _OuterAlloc, typename... _InnerAllocs>class std::scoped_allocator_adaptor< _OuterAlloc, _InnerAllocs > Primary class template. Definition at line 175 of file scoped_allocator. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Sun Jan 6 2013 std::scoped_allocator_adaptor< _OuterAlloc, _InnerAllocs >(3cxx)

Check Out this Related Man Page

__gnu_cxx::throw_allocator_base< _Tp, _Cond >(3)	     Library Functions Manual		  __gnu_cxx::throw_allocator_base< _Tp, _Cond >(3)

NAME
__gnu_cxx::throw_allocator_base< _Tp, _Cond > - SYNOPSIS
Inherits __gnu_cxx::annotate_base, and _Cond. Public Types typedef const value_type * const_pointer typedef const value_type & const_reference typedef ptrdiff_t difference_type typedef value_type * pointer typedef std::true_type propagate_on_container_move_assignment typedef value_type & reference typedef size_t size_type typedef _Tp value_type Public Member Functions pointer address (reference __x) const noexcept const_pointer address (const_reference __x) const noexcept pointer allocate (size_type __n, std::allocator< void >::const_pointer hint=0) void check_allocated (void *p, size_t size) void check_allocated (pointer __p, size_type __n) void check_allocated (size_type __n) template<typename _Up , typename... _Args> void construct (_Up *__p, _Args &&...__args) void deallocate (pointer __p, size_type __n) template<typename _Up > void destroy (_Up *__p) void erase (void *p, size_t size) void insert (void *p, size_t size) size_type max_size () const noexcept Static Public Member Functions static size_t get_label () static void set_label (size_t l) Detailed Description template<typename _Tp, typename _Cond>class __gnu_cxx::throw_allocator_base< _Tp, _Cond > Allocator class with logging and exception generation control. Intended to be used as an allocator_type in templatized code. Note: Deallocate not allowed to throw. Definition at line 634 of file throw_allocator.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 __gnu_cxx::throw_allocator_base< _Tp, _Cond >(3)
Man Page