[#beman-optional-operator_gt-03] = xref:beman.adoc[beman]::xref:beman/optional.adoc[optional]::operator> :relfileprefix: ../../ :mrdocs: Orders a value after an optional with greater‐than. == Synopsis Declared in `<beman/optional/optional.hpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, typename U> constexpr bool operator>( T const& lhs, xref:beman/optional/optional-03.adoc[optional<U>] const& rhs) requires (!detail::is_optional<T>) && detail::optional_gt_rel<T, U>; ---- == Return Value `true` if `rhs` is disengaged, or `lhs` orders after its contained value. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The value operand. | *rhs* | The optional operand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#