GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
* Sign Up! *

Support
Customer Portal
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::less(3) C++ Standard Libary std::less(3)

std::less - std::less


Defined in header <functional>
template<> (since C++14)
class less<void>;


std::less<void> is a specialization of std::less with parameter and return type
deduced.


operator() tests if lhs compares less than rhs
(public member function)

std::less<void>::operator()


template< class T, class U >


constexpr auto operator()( T&& lhs, U&& rhs ) const


-> decltype(std::forward<T>(lhs) < std::forward<U>(rhs));


Returns the result of std::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
the implementation-defined strict total order over pointers.


May throw implementation-defined exceptions.

// Run this code


#include <algorithm>
#include <functional>


constexpr bool strictly_negative(int lhs)
{
return std::less<>()(lhs, 0);
}


int main()
{
constexpr signed low = 010;
constexpr unsigned high = 10;
std::less<> less{};
static_assert(less(low, high));


constexpr static auto 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));
}


Defect reports


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 guaranteed to be consistent
inconsistent

2024.06.10 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.