Difference between revisions of "cpp/utility/functional/logical not"
From cppreference.com
< cpp | utility | functional
m (Text replace - "{{member frame" to "{{member") |
m (Text replace - "===Equivalent function===" to "===Possible implementation===") |
||
Line 41: | Line 41: | ||
(none) | (none) | ||
− | === | + | ===Possible implementation=== |
{{eq fun cpp | 1= | {{eq fun cpp | 1= | ||
bool operator()(const T &arg) const | bool operator()(const T &arg) const |
Revision as of 12:01, 19 March 2012
Template:cpp/utility/functional/sidebar Template:ddcl list begin <tr class="t-dsc-header">
<td>Defined in header
</td>
<functional>
<td></td> <td></td> </tr> <tr class="t-dcl ">
<td class="t-dcl-nopad">template< class T >
struct logical_not;
</td>
struct logical_not;
<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end
Function object for performing logical NOT (logical negation). Effectively calls Template:cpp for type T
.
Contents |
Member types
Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end
Member functions
operator() |
returns the logical NOT of the argument (public member function) |
std::logical_not::operator()
bool operator()( const T& arg ) const; |
||
Returns the logical NOT of arg
.
Parameters
arg | - | value to compute logical NOT of |
Return value
The result of Template:cpp.
Exceptions
(none)