arrow2 0.18.0

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// this landed on 1.60. Let's not force everyone to bump just yet
#![allow(clippy::unnecessary_lazy_evaluations)]

mod array;
#[cfg(feature = "arrow")]
mod arrow;

mod bitmap;
mod buffer;
mod ffi;
mod scalar;
mod temporal_conversions;
mod types;

mod io;
mod test_util;

mod compute;