[#BloombergLP-bdlc-PackedIntArrayUtil-lowerBound] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/PackedIntArrayUtil.adoc[PackedIntArrayUtil]::lowerBound :relfileprefix: ../../../ :mrdocs: Return an iterator to the first element in the sorted range from the specified `first` (inclusive) to the specified `last` (exclusive) that compares greater than or equal to the specified `value`, and `last` if no such element exists. The behavior is undefined unless `first <= last` and the range is sorted. == Synopsis Declared in `<bdlc_packedintarrayutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> static xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] lowerBound( xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] first, xref:BloombergLP/bdlc/PackedIntArrayConstIterator.adoc[PackedIntArrayConstIterator<TYPE>] last, TYPE value); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#