|
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Old binders and adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Defined in header <functional> | ||
template<> class logical_and<void>; | (since C++14) | |
std::logical_and<void> is a specialization ofstd::logical_and with parameter and return type deduced.
Contents |
Nested type | Definition |
is_transparent | unspecified |
operator() | appliesoperator&& tolhs andrhs(public member function) |
template<class T,class U> constexprauto operator()( T&& lhs, U&& rhs)const | ||
Returns the result oflhs&& rhs.
lhs, rhs | - | values to logical AND |
The result oflhs&& rhs.
This section is incomplete Reason: no example |