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

mod immutable;

pub(crate) mod bytes;
mod foreign;

pub use immutable::Buffer;