std::bit_and<void>
来自 cppreference.com
< cpp | utility | functional
在头文件 <functional> 中定义 |
||
template<> class bit_and<void>; |
(自 C++14 起) | |
std::bit_and<void> 是 std::bit_and 的特化,参数和返回值类型推导。
内容 |
[编辑] 嵌套类型
嵌套类型 | 定义 |
is_transparent
|
未指定 |
[编辑] 成员函数
operator() |
将 operator& 应用于 lhs 和 rhs(公共成员函数) |
std::bit_and<void>::operator()
template< class T, class U > constexpr auto operator()( T&& lhs, U&& rhs ) const |
||
返回 std::forward<T>(lhs) & std::forward<U>(rhs) 的结果。
参数
lhs, rhs | - | 要进行按位与运算的值 |
返回值
std::forward<T>(lhs) & std::forward<U>(rhs).
[编辑] 示例
本节内容不完整 原因: 没有示例 |