polars-arrow 0.44.2

Minimal implementation of the Arrow specification forked from arrow2
Documentation
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;