flows_arrow/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5//#![allow(unused)]
6
7extern crate alloc;
8
9#[cfg(feature = "std")]
10extern crate std;
11
12mod concat_batches;
13pub use concat_batches::*;
14
15mod count_rows;
16pub use count_rows::*;
17
18mod project_columns;
19pub use project_columns::*;
20
21mod slice_rows;
22pub use slice_rows::*;