- functional[meta header]
- std[meta namespace]
- class template[meta id-type]
namespace std {
// C++03
template <typename T>
struct logical_not {
bool operator ()(const T& x) const;
using argument_type = T;
using result_type = bool;
};
// C++14
template <class T = void>
struct logical_not {
bool constexpr operator()(const T& x) const;
using argument_type = T;
using result_type = bool;
};
template <>
struct logical_not<void> {
template <class T> constexpr auto operator()(T&& t) const
-> decltype(!std::forward<T>(t));
using is_transparent = unspecified;
};
// C++20
template <class T = void>
struct logical_not {
bool constexpr operator()(const T& x) const;
};
template <>
struct logical_not<void> {
template <class T> constexpr auto operator()(T&& t) const
-> decltype(!std::forward<T>(t));
using is_transparent = unspecified;
};
}
- unspecified[italic]
- std::forward[link ../utility/forward.md]
logical_not
クラスは、論理否定(NOT)を計算する関数オブジェクトである。
この関数オブジェクトは一切のメンバ変数を持たず、状態を保持しない。
名前 | 説明 |
---|---|
operator () |
!x と等価 |
名前 | 説明 |
---|---|
argument_type |
operator() の引数の型。T と等価(T が void 以外の場合のみ) |
result_type |
operator() の戻り値の型。bool と等価(T が void 以外の場合のみ) |
is_transparent |
operator() が関数テンプレートである事を示すタグ型。実装依存の型であるがあくまでタグ型であり、型そのものには意味はない。( T が void の場合のみ) |
#include <iostream>
#include <functional>
int main()
{
std::cout << std::boolalpha << std::logical_not<bool>()(false) << std::endl;
}
- std::logical_not[color ff0000]
true