Return whether the left-hand operand is ordered before the right.
Declared in <bdlb_nullableallocatedvalue.h>
template<
class LHS_TYPE,
class RHS_TYPE>
bool
operator<(
LHS_TYPE const& lhs,
NullableAllocatedValue<RHS_TYPE> const& rhs);
Return true if the specified lhs is ordered before the specified rhs nullable object, and false otherwise. lhs is ordered before rhs if rhs is not null and lhs is ordered before rhs.value().
true if lhs is ordered before rhs, and false otherwise
| Name | Description |
|---|---|
| lhs | left-hand operand |
| rhs | right-hand operand |