bit_and Function
返回二进制文件和两个参数。
template<class Type>
struct bit_and : public binary_function<Type, Type, Type> {
Type operator()(
const Type& _Left,
const Type& _Right
) const;
};
参数
Parameter |
说明 |
---|---|
_Left |
lvalue 对第一个参数。 |
_Right |
lvalue 对第二个参数。 |
返回值
返回二进制文件的两个参数之间的结果和操作。
要求
标头: <functional>
命名空间: std