bit_or Function

返回二进制或两个参数。

template<class Type>
    struct bit_or : public binary_function< Type, Type, Type > {
        Type operator()(
            const Type& _Left, 
            const Type& _Right
        ) const;
    };

参数

  • _Left
    lvalue 对第一个参数。

  • _Right
    lvalue 对第二个参数。

属性值/返回值

返回二进制或两个参数的值。

备注

模板选件类定义其成员函数为返回 _Left | _Right.

要求

标头: <functional>

命名空间: std

请参见

参考

<functional>

Lvalue和Rvalues

标准模板库

其他资源

functional 成员

functional 成员