std::logical_and
Min standard notice:
Header: <functional>
Function object for performing logical AND (logical conjunction). Effectively calls operator&& on type T.
# Declarations
template< class T >
struct logical_and;
(until C++14)
template< class T = void >
struct logical_and;
(since C++14)
# Parameters
lhs, rhs: values to compute logical AND of
# Return value
The result of lhs && rhs.