std::logical_or
Min standard notice:
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
lhs, rhs: values to compute logical OR of
# Return value
The result of lhs || rhs.