#![doc = include_str!("doc/lib.md")]
#![allow(unused_unsafe)]
#![allow(clippy::len_without_is_empty)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#[macro_use]
pub mod array;
#[cfg(feature = "cache_aligned")]
mod alloc;
pub mod bitmap;
pub mod buffer;
pub mod error;
pub mod scalar;
pub mod trusted_len;
pub mod types;
#[cfg(feature = "cache_aligned")]
mod vec;
pub mod compute;
pub mod io;
pub mod record_batch;
pub mod temporal_conversions;
pub mod datatypes;
pub mod ffi;
pub mod util;
#[cfg(any(test, doctest))]
mod docs;