polars_arrow/buffer/
mod.rs

1
2
3
4
5
6
7
//! Contains [`Buffer`], an immutable container for all Arrow physical types (e.g. i32, f64).

mod immutable;
mod iterator;

pub use immutable::Buffer;
pub(super) use iterator::IntoIter;