[#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>` 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-0e.adoc[operator>=<>]( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const& lhs, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-0e.adoc[_» more..._]# Return `true` if `lhs` follows or equals `rhs`. [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& lhs, xref:BloombergLP/bdlc/CompactedArray_ConstIterator.adoc[CompactedArray_ConstIterator] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/operator_ge-06.adoc[_» more..._]# Return `true` if `lhs` is greater than or equal to `rhs`. [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..._]# == 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 [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand‐side iterator | *rhs* | right‐hand‐side iterator |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#