#include <stlsoft/util/pair.hpp>
| T1 | The type of the first member | |
| T2 | The type of the second member |
Public Types | |
| typedef T1 | first_type |
| The first type. | |
| typedef T2 | second_type |
| The second type. | |
Public Member Functions | |
Construction | |
| pair () | |
| Default constructor. | |
| pair (first_type const &v1, second_type const &v2) | |
| Converstion constructor. | |
Public Attributes | |
Members | |
| first_type | first |
| The first member. | |
| second_type | second |
| The second member. | |
| typedef T1 first_type |
The first type.
| typedef T2 second_type |
The second type.
| pair | ( | ) | [inline] |
Default constructor.
| pair | ( | first_type const & | v1, | |
| second_type const & | v2 | |||
| ) | [inline] |
Converstion constructor.
The first member.
The second member.
1.5.6