|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Old binders and adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <functional> | ||
template<> class bit_and<void>; | (since C++14) | |
std::bit_and<void> is a specialization ofstd::bit_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 ofstd::forward<T>(lhs)&std::forward<U>(rhs).
| lhs, rhs | - | values to bitwise AND |
std::forward<T>(lhs)&std::forward<U>(rhs).
| This section is incomplete Reason: no example |