diff --git a/crates/store/re_types_core/src/arrow_zip_validity.rs b/crates/store/re_types_core/src/arrow_zip_validity.rs index 0b67eab8a665f..20194063b924a 100644 --- a/crates/store/re_types_core/src/arrow_zip_validity.rs +++ b/crates/store/re_types_core/src/arrow_zip_validity.rs @@ -1,5 +1,10 @@ -//! Code adapted from -// TODO: rename and maybe rewrite +//! Easily iterate over arrow values that may contain nulls. +//! +//! Code adapted from +//! Originally written by [Jorge Leitao](https://github.com/jorgecarleitao), +//! under Apache License 2.0 (see `LICENSE-APACHE` file). +//! +//! Adapted by Rerun to work with `arrow` crate. use arrow::{buffer::NullBuffer, util::bit_iterator::BitIterator}; @@ -95,6 +100,7 @@ where { /// There are no null values Required(I), + /// There are null values Optional(ZipValidityIter), }