laurus 0.4.2

Unified search library for lexical, vector, and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core data structures for inverted index.
//!
//! This module provides fundamental data structures specific to inverted indexes:
//! - Automaton for fuzzy matching
//! - Posting lists for term-to-document mapping
//! - Term enumeration and statistics

pub mod automaton;
pub mod posting;
pub mod terms;