bit_or Function
Vrátí binární nebo dva parametry.
template<class Type>
struct bit_or : public binary_function< Type, Type, Type > {
Type operator()(
const Type& _Left,
const Type& _Right
) const;
};
Parametry
_Left
lvalue Odkaz na první parametr._Right
lvalue Odkaz na druhý parametr.
Hodnota/Návratová hodnota vlastnosti
Vrátí binární nebo hodnoty dva parametry.
Poznámky
Šablony třídy definuje jeho členskou funkci jako vrácení_Left | _Right.
Požadavky
Záhlaví: <functional>
Obor názvů: std