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

mod immutable;
mod iterator;

use crate::ffi::InternalArrowArray;

pub(crate) type Bytes<T> = foreign_vec::ForeignVec<InternalArrowArray, T>;
pub(super) use iterator::IntoIter;

pub use immutable::Buffer;