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