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