rsmarisa 0.4.0

Pure Rust port of marisa-trie: a static and space-efficient trie data structure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Internal implementation modules.
//!
//! Ported from: lib/marisa/grimoire/
//!
//! The grimoire modules contain the internal implementation details of the
//! MARISA trie data structure, including:
//! - I/O operations (reader, writer, mapper)
//! - Trie structures (LOUDS trie, tail, etc.)
//! - Vector implementations (bit vector, flat vector)
//! - Algorithms (sorting, etc.)

pub mod algorithm;
pub mod io;
pub mod trie;
pub mod vector;