std::logical_not<void>
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <functional> 中 |
||
template<> class logical_not<void>; |
(自 C++14 起) | |
std::logical_not<void> 是 std::logical_not 的一个特化,参数和返回类型已推断得出。
内容 |
[编辑] 嵌套类型
嵌套类型 | 定义 |
is_transparent
|
未指定 |
[编辑] 成员函数
operator() |
将 operator! 应用于其参数(公共成员函数) |
std::logical_not<void>::operator()
template< class T > constexpr auto operator()( T&& arg ) const |
||
返回 !std::forward<T>(arg) 的结果。
参数
arg | - | 要应用逻辑非的值 |
返回值
!std::forward<T>(arg).
[编辑] 示例
本节内容尚未完善 原因:无示例 |