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
426  { // call allocator supplied version
427  return (_Al.allocate(_Count, _Hint));
428  }
unsigned int _Count
Definition: xcomplex:668
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
437  { // call default version
438  return (_Al.allocate(_Count));
439  }
unsigned int _Count
Definition: xcomplex:668

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