semantic_id/
lib.rs

1mod bit32;
2mod bit64;
3mod state16;
4
5mod helpers;
6
7pub use crate::{
8    bit32::Semantic32,
9    bit64::Semantic64,
10    helpers::SemanticKey,
11    state16::{GenerateState16, ID_STATE16},
12};