|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Old binders and adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <functional> | ||
template<> class less<void>; | (since C++14) | |
std::less<void> is a specialization ofstd::less with parameter and return type deduced.
Contents |
| Nested type | Definition |
is_transparent | unspecified |
operator() | tests iflhs compares less thanrhs (public member function) |
template<class T,class U> constexprauto operator()( T&& lhs, U&& rhs)const | ||
Returns the result ofstd::forward<T>(lhs)<std::forward<U>(rhs).
| lhs, rhs | - | values to compare |
std::forward<T>(lhs)<std::forward<U>(rhs).
If a built-in operator comparing pointers is called, the result is consistent with theimplementation-defined strict total order over pointers.
May throw implementation-defined exceptions.
#include <algorithm>#include <functional> constexprbool strictly_negative(int lhs){returnstd::less<>()(lhs,0);} int main(){constexprsigned low=010;constexprunsigned high=10;std::less<> less{}; static_assert(less(low, high)); constexprstaticauto arr={0,-1,-2,-3,-4,-5}; static_assert(!std::all_of(arr.begin(), arr.end(), strictly_negative)); static_assert(std::all_of(arr.begin()+1, arr.end(), strictly_negative));}
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 2562 | C++98 | the pointer total order might be inconsistent | guaranteed to be consistent |