mirror of
https://github.com/nushell/nushell.git
synced 2025-06-07 02:26:52 +02:00
# User-Facing Changes - `random binary` and `random chars` now stream, reducing memory usage and allowing interruption with ctrl-c
19 lines
359 B
Rust
19 lines
359 B
Rust
mod binary;
|
|
mod bool;
|
|
mod byte_stream;
|
|
mod chars;
|
|
mod dice;
|
|
mod float;
|
|
mod int;
|
|
mod random_;
|
|
mod uuid;
|
|
|
|
pub use self::binary::RandomBinary;
|
|
pub use self::bool::RandomBool;
|
|
pub use self::chars::RandomChars;
|
|
pub use self::dice::RandomDice;
|
|
pub use self::float::RandomFloat;
|
|
pub use self::int::RandomInt;
|
|
pub use self::uuid::RandomUuid;
|
|
pub use random_::Random;
|