STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | List of all members
tuple<> Class Template Reference

Public Types

typedef tuple _Myt
 

Public Member Functions

 tuple ()
 
template<class _Alloc >
 tuple (allocator_arg_t, const _Alloc &) _NOEXCEPT
 
 tuple (const tuple &) _NOEXCEPT
 
template<class _Alloc >
 tuple (allocator_arg_t, const _Alloc &, const tuple &) _NOEXCEPT
 
void swap (_Myt &) _NOEXCEPT
 
bool _Equals (const _Myt &) const _NOEXCEPT
 
bool _Less (const _Myt &) const _NOEXCEPT
 

Member Typedef Documentation

typedef tuple tuple<>::_Myt

Constructor & Destructor Documentation

tuple<>::tuple ( )
inline
136  { // default construct
137  }
template<class _Alloc >
tuple<>::tuple ( allocator_arg_t  ,
const _Alloc &   
)
inline
141  { // default construct, allocator
142  }
tuple<>::tuple ( const tuple<> &  )
inline
145  { // copy construct
146  }
template<class _Alloc >
tuple<>::tuple ( allocator_arg_t  ,
const _Alloc &  ,
const tuple<> &   
)
inline
150  { // copy construct, allocator
151  }

Member Function Documentation

bool tuple<>::_Equals ( const _Myt ) const
inline
158  { // test if *this == _Right
159  return (true);
160  }
bool tuple<>::_Less ( const _Myt ) const
inline
163  { // test if *this < _Right
164  return (false);
165  }
void tuple<>::swap ( _Myt )
inline
154  { // swap elements
155  }

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