diff --git a/arrow-buffer/src/util/bit_iterator.rs b/arrow-buffer/src/util/bit_iterator.rs index f667ab1e7b9d..c3e72044bf87 100644 --- a/arrow-buffer/src/util/bit_iterator.rs +++ b/arrow-buffer/src/util/bit_iterator.rs @@ -93,6 +93,8 @@ impl DoubleEndedIterator for BitIterator<'_> { /// Returns `(usize, usize)` each representing an interval where the corresponding /// bits in the provides mask are set /// +/// the first value is the start of the range (inclusive) and the second value is the end of the range (exclusive) +/// #[derive(Debug)] pub struct BitSliceIterator<'a> { iter: UnalignedBitChunkIterator<'a>,