template<typename First, typename Second>
struct cxx::Pair< First, Second >
Pair of two values.
Standard container for a pair of values.
- Parameters
-
First | Type of the first value. |
Second | Type of the second value. |
Definition at line 27 of file pair.
template<typename First, typename Second>
template<typename A1, typename A2>
cxx::Pair< First, Second >::Pair |
( |
A1 && | first, |
|
|
A2 && | second ) |
|
inline |
Create a pair from the two values.
- Parameters
-
first | The first value. |
second | The second value. |
Definition at line 45 of file pair.