Return true if lhs is ordered before rhs, and false otherwise.
Synopsis
Declared in <bdlb_nullablevalue.h>
template<
class LHS_TYPE,
class RHS_TYPE>
bool
operator<(
NullableValue<LHS_TYPE> const& lhs,
bsl::optional<RHS_TYPE> const& rhs)
requires requires {
{ *lhs < *rhs } ‐> NullableValue_ConvertibleToBool;
};
Return Value
true if lhs is ordered before rhs, and false otherwise
Parameters
Name |
Description |
lhs |
left‐hand operand |
rhs |
right‐hand operand |
Created with MrDocs