BloombergLP::bsls::operator<

Less-than operators

Synopses

Declared in <bsls_timeinterval.h>

Return true if the nominal relation between the specified lhs and rhs time interval values holds, and false otherwise. The behavior is undefined unless operands of type double can be converted to valid TimeInterval objects.

bool
operator<(
    TimeInterval const& lhs,
    TimeInterval const& rhs);
» more...

Same as the preceding overload, converting rhs from double.

bool
operator<(
    TimeInterval const& lhs,
    double rhs);
» more...

Same as the preceding overload, converting lhs from double.

bool
operator<(
    double lhs,
    TimeInterval const& rhs);
» more...