次の方法で共有


bit_xor Function

2 個のパラメーター値のバイナリ XOR を返します。

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

パラメーター

  • _Left
    最初のパラメーターの lvalue の参照。

  • _Right
    第 2 パラメーターの lvalue の参照。

戻り値

2 個のパラメーター値のバイナリ XOR を返します。

解説

このテンプレート クラスは _Left^_Rightを返すようにメンバー関数を定義します。

必要条件

ヘッダー : <functional>

名前空間: std

参照

関連項目

<functional>

左辺値と右辺値

標準テンプレート ライブラリ