pub mod inverted_index;
mod merge;
mod mutable_segment;
pub mod search;
pub mod types;
#[cfg(test)]
mod batch_tests;
pub use inverted_index::SparseInvertedIndex;
pub use search::{sparse_search, sparse_search_filtered};
pub use types::{PostingEntry, ScoredDoc, SparseVector, DEFAULT_SPARSE_INDEX_NAME};