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
16
//! I/O operations for reading, writing, and memory mapping.
//!
//! Ported from: lib/marisa/grimoire/io/
//!
//! This module provides:
//! - Reader: for reading trie data from files or memory
//! - Writer: for writing trie data to files or memory
//! - Mapper: for memory-mapped file access

pub mod mapper;
pub mod reader;
pub mod writer;

pub use mapper::Mapper;
pub use reader::Reader;
pub use writer::Writer;