Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:51:16

0001 /*
0002 Copyright 2019 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License, Version 1.0.
0006 (http://www.boost.org/LICENSE_1_0.txt)
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 } /* detail */
0023 } /* range */
0024 } /* boost */
0025 
0026 #endif