std::logical_and

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

# Return value

The result of lhs && rhs.