We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1104a82 commit 0e44d8cCopy full SHA for 0e44d8c
arrow-array/src/array/byte_view_array.rs
@@ -437,7 +437,7 @@ impl<T: ByteViewType + ?Sized> GenericByteViewArray<T> {
437
/// # use arrow_array::Array;
438
/// use arrow_data::ByteView;
439
///
440
- /// fn lengths_with_zero_for_nulls(view: &StringViewArray) -> impl Iterator<u32> {
+ /// fn lengths_with_zero_for_nulls(view: &StringViewArray) -> impl Iterator<Item = u32> {
441
/// view.lengths()
442
/// .enumerate()
443
/// .map(|(index, length)| if view.is_null(index) { 0 } else { length })
0 commit comments