Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/functional/logical not"

From cppreference.com
< cpp‎ | utility‎ | functional
m (Text replace - "{{eq fun cpp" to "{{eq fun")
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh)
Line 49: Line 49:
 
}}
 
}}
 
}}
 
}}
 +
 +
[[de:cpp/utility/functional/logical not]]
 +
[[es:cpp/utility/functional/logical not]]
 +
[[fr:cpp/utility/functional/logical not]]
 +
[[it:cpp/utility/functional/logical not]]
 +
[[ja:cpp/utility/functional/logical not]]
 +
[[pt:cpp/utility/functional/logical not]]
 +
[[ru:cpp/utility/functional/logical not]]
 +
[[zh:cpp/utility/functional/logical not]]

Revision as of 13:19, 2 November 2012

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
Function objects
Function invocation
(C++17)(C++23)
Identity function object
(C++20)
Transparent operator wrappers
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

Old binders and adaptors
(until C++17*)
(until C++17*)
(until C++17*)
(until C++17*)  
(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
(until C++17*)(until C++17*)
(until C++17*)(until C++17*)

(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
 

Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <functional>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
template< class T >
struct logical_not;
</td>

<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 operator! for type T.

Contents

Member types

Type Definition
result_type bool
argument_type T

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 !arg.

Exceptions

(none)

Possible implementation

bool operator()(const T &arg) const 
{
    return !arg;
}