Return true if lhs follows rhs in the referenced array.
Declared in <bdlc_packedintarray.h>
template<class TYPE>
bool
operator>(
PackedIntArrayConstIterator<TYPE> const& lhs,
PackedIntArrayConstIterator<TYPE> const& rhs);
Return true if the specified lhs has a value greater than the specified rhs, false otherwise. An iterator has a value greater than another if its index is greater the other's index. The behavior is undefined unless lhs and rhs refer to the same array.
| Name | Description |
|---|---|
operator><> | Return whether the left iterator follows the right (see free operator>). |
true if lhs follows rhs, and false otherwise
| Name | Description |
|---|---|
| lhs | left-hand-side iterator |
| rhs | right-hand-side iterator |