1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef BOOST_UTILITY_COMPARE_POINTEES_25AGO2003_HPP
- #define BOOST_UTILITY_COMPARE_POINTEES_25AGO2003_HPP
- #include<functional>
- namespace boost {
- template<class OptionalPointee>
- inline
- bool equal_pointees ( OptionalPointee const& x, OptionalPointee const& y )
- {
- return (!x) != (!y) ? false : ( !x ? true : (*x) == (*y) ) ;
- }
- template<class OptionalPointee>
- struct equal_pointees_t : std::binary_function<OptionalPointee,OptionalPointee,bool>
- {
- bool operator() ( OptionalPointee const& x, OptionalPointee const& y ) const
- { return equal_pointees(x,y) ; }
- } ;
- template<class OptionalPointee>
- inline
- bool less_pointees ( OptionalPointee const& x, OptionalPointee const& y )
- {
- return !y ? false : ( !x ? true : (*x) < (*y) ) ;
- }
- template<class OptionalPointee>
- struct less_pointees_t : std::binary_function<OptionalPointee,OptionalPointee,bool>
- {
- bool operator() ( OptionalPointee const& x, OptionalPointee const& y ) const
- { return less_pointees(x,y) ; }
- } ;
- }
- #endif
|