Greater‐than operators
Synopses
Declared in <beman/optional/optional.hpp>
Greater‐than operator
template<
typename T,
typename U>
constexpr
bool
operator>(
optional<T> const& lhs,
optional<U> const& rhs)
requires detail::optional_gt_rel<T, U>;
Greater‐than operator
template<
typename T,
typename U>
constexpr
bool
operator>(
optional<T> const& lhs,
U const& rhs)
requires detail::optional_gt_rel<T, U>;
Greater‐than operator
template<
typename T,
typename U>
constexpr
bool
operator>(
T const& lhs,
optional<U> const& rhs)
requires detail::optional_gt_rel<T, U>;
Created with MrDocs