std:: not1
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Old binders and adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
ヘッダーで定義
<functional>
|
||
|
template
<
class
Predicate
>
std:: unary_negate < Predicate > not1 ( const Predicate & pred ) ; |
(C++14まで) | |
|
template
<
class
Predicate
>
constexpr std:: unary_negate < Predicate > not1 ( const Predicate & pred ) ; |
(C++14から)
(C++17で非推奨) (C++20で削除) |
|
std::not1
は、渡された単項述語関数の補数を返す関数オブジェクトを作成するためのヘルパー関数です。作成される関数オブジェクトは
std::
unary_negate
<
Predicate
>
型です。
単項述語型は、述語のパラメータ型に変換可能なメンバ型
argument_type
を定義しなければなりません。
std::ref
、
std::cref
、
std::negate
、
std::logical_not
、
std::mem_fn
、
std::function
、
std::hash
から得られる単項関数オブジェクト、または
std::not1
への別の呼び出しから得られる関数オブジェクトはこの型が定義されており、非推奨の
std::unary_function
から派生した関数オブジェクトも同様です。
目次 |
パラメータ
| pred | - | 単項述語 |
戻り値
std::not1
は
std::
unary_negate
<
Predicate
>
型のオブジェクトを返し、これは
pred
で構築されます。
例外
(なし)
例
#include <algorithm> #include <functional> #include <iostream> #include <iterator> #include <numeric> #include <vector> struct LessThan7 : std::unary_function<int, bool> { bool operator()(int i) const { return i < 7; } }; int main() { std::vector<int> v(10); std::iota(std::begin(v), std::end(v), 0); std::cout << std::count_if(begin(v), end(v), std::not1(LessThan7())) << '\n'; // std::functionを使用した同じ処理 std::function<bool(int)> less_than_9 = [](int x) { return x < 9; }; std::cout << std::count_if(begin(v), end(v), std::not1(less_than_9)) << '\n'; }
出力:
3 1
関連項目
|
(C++17)
|
保持する関数オブジェクトの結果の補数を返す関数オブジェクトを作成する
(関数テンプレート) |
|
(C++17で非推奨)
(C++20で削除)
|
保持する単項述語の補数を返すラッパー関数オブジェクト
(クラステンプレート) |
|
(C++11)
|
任意のコピー構築可能な呼び出し可能オブジェクトのコピー可能ラッパー
(クラステンプレート) |
|
(C++23)
|
特定の呼び出しシグネチャで修飾子をサポートする任意の呼び出し可能オブジェクトのムーブ専用ラッパー
(クラステンプレート) |
|
(C++17で非推奨)
(C++20で削除)
|
カスタム
std::binary_negate
オブジェクトを構築する
(関数テンプレート) |
|
(C++11で非推奨)
(C++17で削除)
|
関数ポインタからアダプタ互換の関数オブジェクトラッパーを作成する
(関数テンプレート) |
|
(C++11で非推奨)
(C++17で削除)
|
アダプタ互換の単項関数基底クラス
(クラステンプレート) |