<beman/optional/optional.hpp>
template<
typename T,
typename U>
constexpr
bool
operator>(
optional<T> const& lhs,
optional<U> const& rhs)
requires detail::optional_gt_rel<T, U>;
true
if the left object is greater than the right object, false
otherwise
Name | Description |
---|---|
lhs | The left operand |
rhs | The right operand |