std::experimental::ranges::not_equal_to
来自 cppreference.com
< cpp | experimental | ranges
定义在头文件 <experimental/ranges/functional> 中 |
||
template< class T = void > requires EqualityComparable<T> || |
(范围 TS) | |
template<> struct not_equal_to<void>; |
(范围 TS) | |
用于执行比较的函数对象。主模板在 T
类型的常量左值上调用 operator == 并对结果取反。特化 not_equal_to<void>
从参数(但不包括返回类型)推断函数调用运算符的参数类型。
not_equal_to
的所有特化都是 Semiregular
。
内容 |
[编辑] 成员类型
成员类型 | 定义 |
is_transparent (仅 not_equal_to<void> 特化的成员) |
/* 未指定 */ |
[编辑] 成员函数
operator() |
检查参数是否 *不等于* (公有成员函数) |
std::experimental::ranges::not_equal_to::operator()
constexpr bool operator()(const T& x, const T& y) const; |
(1) | (仅主 not_equal_to<T> 模板的成员) |
template< class T, class U > requires EqualityComparableWith<T, U> || |
(2) | (仅 not_equal_to<void> 特化的成员) |
[编辑] 注释
与 std::not_equal_to 不同,ranges::not_equal_to
要求 ==
和 !=
都有效(通过 EqualityComparable
和 EqualityComparableWith
约束),并且完全根据 ranges::equal_to 定义。但是,实现可以使用 operator!= 直接,因为这些概念要求 ==
和 !=
的结果一致。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
实现 x != y 的函数对象 (类模板) |