PkmnLib_rs/src/utils/mod.rs

19 lines
507 B
Rust
Raw Normal View History

#[doc(inline)]
pub use random::Random;
#[doc(inline)]
pub use string_key::StringKey;
#[doc(inline)]
pub use value_identifier::*;
#[doc(inline)]
pub use vec_ext::*;
2022-07-01 16:20:16 +00:00
/// The random module defines a RNG implementation used in pkmn_lib
mod random;
2022-07-01 16:20:16 +00:00
/// The string_key module defines a custom string handling for reduced allocations and fast lookups
/// and equality checks.
mod string_key;
2022-10-14 14:53:30 +00:00
/// Helper tool to keep track of moving memory for FFI.
mod value_identifier;
/// Helper functions for vecs
mod vec_ext;