beman::optional::operator==

Compares a value against an engaged optional's value for equality.

Synopsis

Declared in <beman/optional/optional.hpp>

template<
    typename T,
    typename U>
constexpr
bool
operator==(
    T const& lhs,
    optional<U> const& rhs)
requires (!detail::is_optional<T>) && detail::optional_eq_rel<T, U>;

Return Value

true if rhs is engaged and lhs equals its contained value.

Parameters

NameDescription
lhsThe value operand.
rhsThe optional operand.