PkmnLib_rs/src/utils/mod.rs

15 lines
385 B
Rust
Executable File

#[doc(inline)]
pub use random::Random;
#[doc(inline)]
pub use string_key::StringKey;
#[doc(inline)]
pub use vec_ext::*;
/// The random module defines a RNG implementation used in pkmn_lib
mod random;
/// The string_key module defines a custom string handling for reduced allocations and fast lookups
/// and equality checks.
mod string_key;
/// Helper functions for vecs
mod vec_ext;