다음을 통해 공유


bit_and Function

이진 AND 두 매개 변수를 반환합니다.

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

매개 변수

Parameter

설명

_Left

lvalue 첫 번째 매개 변수를 참조 합니다.

_Right

lvalue 두 번째 매개 변수를 참조 합니다.

반환 값

두 매개 변수 간의 이진 AND 연산의 결과 반환합니다.

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

<functional>

Lvalue가 고 Rvalue

표준 템플릿 라이브러리