Functions | |
| template<typename T , typename U > | |
| void | swap (boost::tuple< T &, U & > a, boost::tuple< T &, U & > b) noexcept |
| Exchanges values of two two-element tuples. | |
| template<class T1 , class T2 , class S1 , class S2 > | |
| bool | operator< (const cons< T1, T2 > &lhs, const cons< S1, S2 > &rhs) |
| Less than relational operator for Boost tuples. | |
|
inline |
Less than relational operator for Boost tuples.
| lhs | First operand. |
| rhs | Second operand. |
Modified operator, based on the less than operator from the Boost library. Have to implement a custom operator to only compare the first values of the tuples.
|
inlinenoexcept |