rufl 0.1.3

A powerful util function library for rust
Documentation
//! random mod contains several utility functions for generating random number or string.
//!

mod numberic;
pub use numberic::*;

mod upper;
pub use upper::*;

mod lower;
pub use lower::*;

mod alphabet;
pub use alphabet::*;

mod alpha_number;
pub use alpha_number::*;

mod symbol;
pub use symbol::*;

mod string;
pub use string::*;

mod rand;