std::logical_or<void>
来自 cppreference.cn
定义于头文件 <functional> |
||
template<> class logical_or<void>; |
(C++14 起) | |
std::logical_or<void> 是 std::logical_or 的一个特化版本,其参数和返回类型都是推导的。
目录 |
[edit] 嵌套类型
嵌套类型 | 定义 |
is_transparent
|
未指定 |
[edit] 成员函数
operator() |
对 lhs 和 rhs 应用 operator|| (公开成员函数) |
std::logical_or<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).
[edit] 示例
本节不完整 原因:无示例 |