[go: up one dir, main page]

arrow2 0.5.3

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Misc utilities used in different places in the crate.

#[cfg(any(feature = "compute", feature = "io_csv"))]
mod lexical;
#[cfg(any(feature = "compute", feature = "io_csv"))]
pub use lexical::*;

#[cfg(feature = "benchmarks")]
#[cfg_attr(docsrs, doc(cfg(feature = "benchmarks")))]
pub mod bench_util;