Return true if lhs is greater than rhs.
Declared in <bdlc_compactedarray.h>
template<class TYPE>
bool
operator>(
CompactedArray_ConstIterator<TYPE> const& lhs,
CompactedArray_ConstIterator<TYPE> const& rhs);
Iterator lhs has a value greater than iterator rhs if 0 > rhs - lhs (see operator-). The behavior is undefined unless lhs and rhs refer to the same array.
true if lhs is greater than rhs, and false otherwise
| Name | Description |
|---|---|
| lhs | left-hand-side iterator |
| rhs | right-hand-side iterator |