STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Static Public Member Functions | List of all members
_Alloc_allocate Struct Reference

Static Public Member Functions

template<class _Alloc , class _Size_type , class _Const_void_pointer >
static auto _Fn (int, _Alloc &_Al, _Size_type _Count, _Const_void_pointer _Hint) -> decltype(_Al.allocate(_Count, _Hint))
 
template<class _Alloc , class _Size_type , class _Const_void_pointer >
static auto _Fn (_Wrap_int, _Alloc &_Al, _Size_type _Count, _Const_void_pointer) -> decltype(_Al.allocate(_Count))
 

Member Function Documentation

template<class _Alloc , class _Size_type , class _Const_void_pointer >
static auto _Alloc_allocate::_Fn ( int  ,
_Alloc &  _Al,
_Size_type  _Count,
_Const_void_pointer  _Hint 
) -> decltype(_Al.allocate(_Count, _Hint))
inlinestatic
529  { // call allocator supplied version
530  return (_Al.allocate(_Count, _Hint));
531  }
_Diff _Count
Definition: algorithm:1941
template<class _Alloc , class _Size_type , class _Const_void_pointer >
static auto _Alloc_allocate::_Fn ( _Wrap_int  ,
_Alloc &  _Al,
_Size_type  _Count,
_Const_void_pointer   
) -> decltype(_Al.allocate(_Count))
inlinestatic
540  { // call default version
541  return (_Al.allocate(_Count));
542  }
_Diff _Count
Definition: algorithm:1941

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