Warning, file /include/boost/range/detail/less.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_RANGE_DETAIL_LESS
0009 #define BOOST_RANGE_DETAIL_LESS
0010
0011 namespace boost {
0012 namespace range {
0013 namespace detail {
0014
0015 struct less {
0016 template<class T, class U>
0017 bool operator()(const T& lhs, const U& rhs) const {
0018 return lhs < rhs;
0019 }
0020 };
0021
0022 }
0023 }
0024 }
0025
0026 #endif