//! SOFA file reader and processor for Spatially Oriented Format for Acoustics.
//!
//! This module provides pure Rust implementation for reading and processing
//! SOFA files containing HRTF, or Head-Related Transfer Function, data.
//!
//! This module is internal. Use [`crate::reader`] for the public API.
pub use Error;
pub use ;
pub use Lookup;
pub use normalize;
pub use Neighborhood;
pub use Hrtf;
pub use resample;
pub use validate;