RSC  0.16.0
PairWorkaround.h File Reference
#include <boost/type_traits.hpp>
Include dependency graph for PairWorkaround.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  rsc::patterns::detail::pair< _T1, _T2 >
 pair holds two objects of arbitrary type. More...
 

Namespaces

 rsc
 
 rsc::patterns
 
 rsc::patterns::detail
 

Functions

template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator== (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 Two pairs of the same type are equal iff their members are equal. More...
 
template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator< (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 http://gcc.gnu.org/onlinedocs/libstdc++/20_util/howto.html#pairlt More...
 
template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator!= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 Uses operator== to find the result. More...
 
template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator> (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 Uses operator< to find the result. More...
 
template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator<= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 Uses operator< to find the result. More...
 
template<class _T1 , class _T2 >
bool rsc::patterns::detail::operator>= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y)
 Uses operator< to find the result. More...
 
template<class _T1 , class _T2 >
pair< _T1, _T2 > rsc::patterns::detail::make_pair (_T1 __x, _T2 __y)
 A convenience wrapper for creating a pair from two objects. More...