class template
<tuple>
std::tuple
template <class... Types> class tuple;
Tuple
Template parameters
- Types...
- A list of types used for the elements, in the same order as they are going to be ordered in the tuple.
Member types
none.Member functions
- (constructor)
- Construct tuple (public member function)
- tuple::operator=
- Assign content (public member function)
- tuple::swap
- Swap content (public member function)
Non-member function overloads
- relational operators (tuple)
- Relational operators for tuple (function template)
- swap (tuple)
- Exchanges the contents of two tuples (function template)
- get (tuple)
- Get element (function template)
Non-member class specializations
- uses_allocator<tuple>
- Uses allocator for tuple (class template)
Example
|
|