lite-strtab 0.2.0

Crate for storing a lot of strings in a single buffer to save memory.
Documentation
1
2
3
4
5
6
7
8
9
//! Public data and type definitions used by the crate.

mod offset;
mod string_id;
mod string_index;

pub use offset::Offset;
pub use string_id::StringId;
pub use string_index::StringIndex;