claw 0.1.0-alpha2

Low-level information retrieval library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! # Claw Crate
//!
//! claw implements some basic information retrieval functionality

pub mod inverted_index;
mod errors;

pub use inverted_index::InvertedIndex;
pub use errors::Error;