arrow2 0.8.1

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(missing_docs)]
//! Contains [`Buffer`] and [`MutableBuffer`], containers for all Arrow
//! physical types (e.g. i32, f64).

mod immutable;
mod mutable;

pub(crate) mod bytes;

pub use immutable::Buffer;
pub use mutable::MutableBuffer;