Return whether the left‐hand operand is ordered after the right.

Synopsis

Declared in <bdlb_nullableallocatedvalue.h>

template<
    class LHS_TYPE,
    class RHS_TYPE>
bool
operator>(
    bsl::optional<LHS_TYPE> const& lhs,
    NullableAllocatedValue<RHS_TYPE> const& rhs);

Description

If neither of the specified lhs and rhs contain a value, return false. If lhs contains a value, and rhs does not, return true. If lhs does not contains a value, rhs does, return false. Otherwise, return lhs.value > rhs.value().

Return Value

true if lhs is ordered after rhs, and false otherwise

Parameters

Name

Description

lhs

left‐hand operand

rhs

right‐hand operand

Created with MrDocs