[#BloombergLP-bdlc-BitArray-find1AtMinIndex] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/BitArray.adoc[BitArray]::find1AtMinIndex :relfileprefix: ../../../ :mrdocs: Return the index of the least‐significant 1 bit in this array in the range optionally specified by `begin` and `end`, and `k_INVALID_INDEX` otherwise. The range is `[begin .. effectiveEnd)]`, where `effectiveEnd == length()` if `end` is not specified and `effectiveEnd == end` otherwise. The behavior is undefined unless `begin <= effectiveEnd <= length()`. == Synopsis Declared in `<bdlc_bitarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::size_t find1AtMinIndex( std::size_t begin = 0, std::size_t end = k_INVALID_INDEX) const; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#