共用方式為


bit_and Function

傳回二進位和兩個參數。

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

參數

參數

描述

_Left

在第一個參數的 lvalue 參考。

_Right

在第二個參數的 lvalue 參考。

傳回值

傳回二進位的結果及管理兩個參數之間。

需求

標題: <functional>

命名空間: std

請參閱

參考

<functional>

值和 Rvalues

標準樣板程式庫