#include <util.h>
Public Member Functions | |
| Pair (const Pair &other) | |
| Pair (Pair &&other) | |
| Pair (const T1 &first_, const T2 &second_) | |
| Pair (T1 &&first_, T2 &&second_) | |
| Pair (T1 &&first_, const T2 &second_) | |
| Pair (const T1 &first_, T2 &&second_) | |
| Pair & | operator= (const Pair &other) |
| Pair & | operator= (Pair &&other) |
Public Attributes | |
| T1 | first |
| T2 | second |
Provides a way to store two heterogeneous objects as a single unit.