[#BloombergLP-bdlc-operator_ge-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::operator>= :relfileprefix: ../../ :mrdocs: Greater‐than‐or‐equal operators == Synopses Declared in `<bdlc_compactedarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_ge-0e.adoc[operator>=<>]( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const&, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-0e.adoc[_» more..._]# Return `true` if the specified `lhs` has a value greater or equal than the specified `rhs`, `false` otherwise. An iterator has a value greater than or equal to another if its index is greater the other's index. The behavior is undefined unless `lhs` and `rhs` refer to the same array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_ge-00.adoc[operator>=]( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& lhs, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-00.adoc[_» more..._]# Return whether the left iterator follows or equals the right (see free `operator>=`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<> bool xref:BloombergLP/bdlc/operator_ge-06.adoc[operator>=]( xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator] const&, xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator] const&); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-06.adoc[_» more..._]# Return `true` if the specified `lhs` has a value greater or equal than the specified `rhs`, and `false` otherwise. Iterator `lhs` has a value greater than or equal to iterator `rhs` if `0 >= rhs ‐ lhs` (see `operator‐`). The behavior is undefined unless `lhs` and `rhs` refer to the same array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> bool xref:BloombergLP/bdlc/operator_ge-0c.adoc[operator>=]( xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator<TYPE>] const& lhs, xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator<TYPE>] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-0c.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#