bit_xor Function
Vrátí binární XOR hodnoty dva parametry.
template<class Type>
struct bit_xor : public binary_function< Type, Type, Type > {
Type operator()(
const Type& _Left,
const Type& _Right
) const;
};
Parametry
_Left
lvalue Odkaz pro první parametr._Right
lvalue Odkaz druhý parametr.
Vrácená hodnota
Vrátí binární XOR hodnoty dva parametry.
Poznámky
Šablona třídy definuje jeho členské funkce jako vykazujících _Left ^ _Right.
Požadavky
Záhlaví: <functional>
Obor názvů: std