1/*
2Copyright 2019 Glen Joseph Fernandes
3(glenjofe@gmail.com)
4
5Distributed under the Boost Software License, Version 1.0.
6(http://www.boost.org/LICENSE_1_0.txt)
7*/
8#ifndef BOOST_RANGE_DETAIL_LESS
9#define BOOST_RANGE_DETAIL_LESS
10
11namespace boost {
12namespace range {
13namespace detail {
14
15struct less {
16 template<class T, class U>
17 bool operator()(const T& lhs, const U& rhs) const {
18 return lhs < rhs;
19 }
20};
21
22} /* detail */
23} /* range */
24} /* boost */
25
26#endif
27

source code of boost/libs/range/include/boost/range/detail/less.hpp