Namespaces | |
namespace | ustl |
Classes | |
class | ustl::pair< T1, T2 > |
Container for two values. More... | |
Functions | |
template<typename T1, typename T2> | |
bool | operator== (const pair< T1, T2 > &p1, const pair< T1, T2 > &p2) |
Compares both values of p1 to those of p2 . | |
template<typename T1, typename T2> | |
bool | operator< (const pair< T1, T2 > &p1, const pair< T1, T2 > &p2) |
Compares both values of p1 to those of p2 . | |
template<typename T1, typename T2> | |
pair< T1, T2 > | make_pair (const T1 &a, const T2 &b) |
Returns a pair object with (a,b). |