std::logical_not
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <functional> 中定义
|
||
template< class T > struct logical_not; |
||
函数对象进行逻辑NOT(逻辑否定)。有效地调用operator!类型
T
.原文:
Function object for performing logical NOT (logical negation). Effectively calls operator! for type
T
.目录 |
[编辑] 会员类型
类型
|
Definition |
result_type
|
bool
|
argument_type
|
T
|
[编辑] 成员函数
operator() |
返回逻辑“非”的说法 原文: returns the logical NOT of the argument (公共成员函数) |
的std :: logical_not ::operator()
bool operator()( const T& arg ) const; |
||
Returns the logical NOT of arg
.
Parameters
arg | - | 值来计算逻辑“非”
|
Return value
The result of !arg.
Exceptions
(none)
Possible implementation
bool operator()(const T &arg) const { return !arg; } |