命名空间
变体
操作

operator==,!=(std::experimental::function)

来自 cppreference.com
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性 非 TS
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
定义在头文件 <experimental/functional>
template< class R, class... ArgTypes >

bool operator==( const std::experimental::function<R(ArgTypes...)>& f,

                 std::nullptr_t ) noexcept;
(1) (库基础 TS)
template< class R, class... ArgTypes >

bool operator==( std::nullptr_t,

                 const std::experimental::function<R(ArgTypes...)>& f ) noexcept;
(2) (库基础 TS)
(在库基础 TS v3 中删除)
template< class R, class... ArgTypes >

bool operator!=( const std::experimental::function<R(ArgTypes...)>& f,

                 std::nullptr_t ) noexcept;
(3) (库基础 TS)
(在库基础 TS v3 中删除)
template< class R, class... ArgTypes >

bool operator!=( std::nullptr_t,

                 const std::experimental::function<R(ArgTypes...)>& f ) noexcept;
(4) (库基础 TS)
(在库基础 TS v3 中删除)

将一个 std::experimental::function 与空指针进行比较。空函数(即没有可调用目标的函数)比较相等,非空函数比较不相等。

!= 运算符是从 operator== 合成 的。

(库基础 TS v3)

[编辑] 参数

f - 要比较的 std::experimental::function

[编辑] 返回值

1,2) !f
3,4) (bool) f

[编辑] 另请参阅

(在 C++20 中删除)
将一个 std::functionnullptr 进行比较
(函数模板) [编辑]