|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Old binders and adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <functional> | ||
template<> class equal_to<void>; | (since C++14) | |
std::equal_to<void> is a specialization ofstd::equal_to with parameter and return type deduced.
Contents |
| Nested type | Definition |
is_transparent | unspecified |
operator() | tests if the two arguments compare equal (public member function) |
template<class T,class U> constexprauto operator()( T&& lhs, U&& rhs)const | ||
Returns the result of equality comparison betweenlhs andrhs.
| lhs, rhs | - | values to compare |
std::forward<T>(lhs)==std::forward<U>(rhs).
#include <functional> int main(){constexprint a=0, b=8;std::equal_to<> equal{}; static_assert(equal(a, a)); static_assert(!equal(a, b));}