std::logical_or

Header: <functional>

Function object for performing logical OR (logical disjunction). Effectively calls operator|| on type T.

# Declarations

template< class T >
struct logical_or;

(until C++14)

template< class T = void >
struct logical_or;

(since C++14)

# Parameters

# Return value

The result of lhs || rhs.