#![cfg(target_endian = "little")]
#![deny(missing_docs)]
#[cfg(feature = "arbitrary")]
mod arbitrary;
pub mod arrow;
mod bigint;
pub mod datetime;
mod decimal;
mod dtype;
pub mod extension;
mod f16;
mod field;
mod field_mask;
mod field_names;
mod native_dtype;
mod nullability;
mod ptype;
pub mod serde;
pub mod session;
mod struct_;
pub use bigint::*;
pub use decimal::*;
pub use dtype::DType;
pub use dtype::NativeDType;
pub use extension::ExtDType;
pub use extension::ExtDTypeRef;
pub use extension::ExtID;
pub use f16::*;
pub use field::*;
pub use field_mask::*;
pub use field_names::*;
pub use half;
pub use nullability::*;
pub use ptype::*;
pub use struct_::*;
pub mod proto {
pub use vortex_proto::dtype;
}
pub mod flatbuffers {
pub use vortex_flatbuffers::dtype::*;
}
#[cfg(test)]
mod test {
use std::sync::LazyLock;
use vortex_session::VortexSession;
use crate::session::DTypeSession;
pub(crate) static SESSION: LazyLock<VortexSession> =
LazyLock::new(|| VortexSession::empty().with::<DTypeSession>());
}