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
309  { // call allocator supplied version
310  return (_Al.allocate(_Count, _Hint));
311  }
_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
320  { // call default version
321  return (_Al.allocate(_Count));
322  }
_Diff _Count
Definition: algorithm:1941

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