BloombergLP::bdlc::operator>=

Greater-than-or-equal operators

Synopses

Declared in <bdlc_compactedarray.h>

Return whether the left iterator follows or equals the right (see free operator>=).

template<>
bool
operator>=<>(
    PackedIntArrayConstIterator const& lhs,
    PackedIntArrayConstIterator const& rhs);
» more...

Return true if lhs follows or equals rhs.

template<class TYPE>
bool
operator>=(
    PackedIntArrayConstIterator<TYPE> const& lhs,
    PackedIntArrayConstIterator<TYPE> const& rhs);
» more...

Return whether the left iterator follows or equals the right (see free operator>=).

template<>
bool
operator>=(
    CompactedArray_ConstIterator const& lhs,
    CompactedArray_ConstIterator const& rhs);
» more...

Return true if lhs is greater than or equal to rhs.

template<class TYPE>
bool
operator>=(
    CompactedArray_ConstIterator<TYPE> const& lhs,
    CompactedArray_ConstIterator<TYPE> const& rhs);
» more...

Return Value

  • true if lhs follows or equals rhs, and false otherwise
  • true if lhs is greater than or equal to rhs, and false otherwise

Parameters

NameDescription
lhsleft-hand-side iterator
rhsright-hand-side iterator