Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-arrow/src/buffer/mod.rs
6939 views
1
//! Contains [`Buffer`], an immutable container for all Arrow physical types (e.g. i32, f64).
2
3
mod immutable;
4
mod iterator;
5
6
pub use immutable::Buffer;
7
pub(super) use iterator::IntoIter;
8
9