On this page
std::not_equal_to<void>
Defined in header <functional> |
||
|---|---|---|
|
(since C++14) |
std::not_equal_to<void> is a specialization of std::not_equal_to with parameter and return type deduced.
Nested types
| Nested type | Definition |
|---|---|
is_transparent |
unspecified |
Member functions
|
operator()
|
tests if the two arguments do not compare equal (public member function) |
std::not_equal_to<void>::operator()
|
Returns the result of non-equality comparison between lhs and rhs.
Parameters
| lhs, rhs | - | values to compare |
Return value
std::forward<T>(lhs) != std::forward<U>(rhs).
Example
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/functional/not_equal_to_void