std::pair
From cppreference.com
Template:cpp/utility/pair/sidebar
Defined in header <utility>
|
||
template< class T1, |
||
std::pair
is a struct template that provides a way to store two heterogeneous objects as a single unit.
Contents |
Member functions
constructs new pair (public member function) | |
assigns the contents (public member function) | |
swaps the contents (public member function) |
Member types
Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end
Template:tdcl list begin Template:tdcl list h1 Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end
Non-member functions
creates a pair object of type, defined by the argument types (function template) | |
(C++11) |
accesses an element of a pair similar to tuple (function template) |
Helper classes
(C++11) |
obtains the size of a pair similar to tuple (class template) |
(C++11) |
obtains the type of the elements of pair similar to tuple (class template) |
(C++11) |
disambiguates constructor and function overloading for piecewise construction (class) |