bit_xor Function
이진 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
lvalue 두 번째 매개 변수에 대 한 참조입니다.
반환 값
이진 XOR 두 매개 변수의 값을 반환합니다.
설명
반환 하도록 템플릿 클래스의 멤버 함수 정의 _Left ^ _Right.
요구 사항
헤더: <functional>
네임 스페이스: std