pub mod alloc;
pub mod array;
pub mod bitmap;
pub mod buffer;
mod endianess;
pub mod error;
pub mod trusted_len;
pub mod types;
#[cfg(feature = "compute")]
pub mod compute;
pub mod io;
pub mod record_batch;
pub mod temporal_conversions;
pub use alloc::total_allocated_bytes;
pub mod datatypes;
pub mod ffi;
pub mod util;
// so that documentation gets test
#[cfg(any(test, doctest))]
mod docs;