bit_and Function
2 個のパラメーターのバイナリを返します。
template<class Type>
struct bit_and : public binary_function<Type, Type, Type> {
Type operator()(
const Type& _Left,
const Type& _Right
) const;
};
パラメーター
パラメーター |
説明 |
---|---|
_Left |
最初のパラメーターへの lvalue の参照。 |
_Right |
2 番目のパラメーターに lvalue の参照。 |
戻り値
2 個のパラメーターの間でバイナリの結果と操作を返します。
必要条件
ヘッダー : <functional>
名前空間: std