/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT license.
*/
//! Generic inverted index implementation.
//!
//! This module provides a complete implementation of the InvertedIndex, PostingListProvider,
//! and QueryEvaluator traits that works with any KvStore backend.
// Re-export public types
pub use ;
pub use GenericIndex;