命名空间
变体
操作

std::bit_and<void>

来自 cppreference.cn
< cpp‎ | utility‎ | functional
 
 
 
函数对象
函数调用
(C++17)(C++23)
恒等函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
bit_and<>
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧的绑定器和适配器
(until C++17*)
(until C++17*)
(until C++17*)
(until C++17*)  
(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
(until C++17*)(until C++17*)
(until C++17*)(until C++17*)

(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
 
定义于头文件 <functional>
template<>
class bit_and<void>;
(since C++14)

std::bit_and<void>std::bit_and 的特化,参数和返回类型被推导。

目录

[edit] 嵌套类型

嵌套类型 定义
is_transparent 未指定

[edit] 成员函数

operator()
lhsrhs 应用 operator&
(公共成员函数)

std::bit_and<void>::operator()

template< class T, class U >

constexpr auto operator()( T&& lhs, U&& rhs ) const

    -> decltype(std::forward<T>(lhs) & std::forward<U>(rhs));

返回 std::forward<T>(lhs) & std::forward<U>(rhs) 的结果。

参数

lhs, rhs - 按位与的值

返回值

std::forward<T>(lhs) & std::forward<U>(rhs).

[edit] 示例