std::logical_and<void>
From cppreference.com
< cpp | utility | functional
| ヘッダ <functional> で定義 |
||
| template<> class logical_and<void>; |
(C++14以降) | |
std::logical_and<void> は、パラメータ型および戻り値の型が推論される std::logical_and の特殊化です。
目次 |
[編集] ネストされた型
| ネストされた型 | 定義 |
is_transparent
|
unspecified |
[編集] メンバ関数
| operator() |
lhs と rhs に operator&& を適用します。(public member function) |
std::logical_and<void>::operator()
| template< class T, class U > constexpr auto operator()( T&& lhs, U&& rhs ) const |
||
lhs && rhs の結果を返します。
パラメータ
| lhs, rhs | - | 論理AND に値を適用します。 |
戻り値
lhs && rhs の結果。
[編集] 例
| このセクションは未完成です 理由: 例がありません |