opt_struct/
lib.rs

1pub mod vec;
2pub mod static_vec;
3pub mod set;
4pub mod hash_set;
5pub mod hash_map;
6
7// legacy: re-export
8pub use vec::*;
9