This website requires JavaScript.
Explore
Help
Sign In
extern
/
nushell
Watch
1
Star
0
Fork
1
You've already forked nushell
mirror of
https://github.com/nushell/nushell.git
synced
2024-11-26 02:13:47 +01:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7c1487e18d
nushell
/
crates
/
nu-command
/
tests
/
commands
/
random
/
mod.rs
8 lines
92 B
Rust
Raw
Normal View
History
Unescape
Escape
Add bool subcommand to random (#2061) * Add bool subcommand to random * Fix function name copy paste error * Fix issue 2062: allow deserialization of a decimal * Add bias flag to `random bool`
2020-06-26 06:51:05 +02:00
mod
bool
;
Add random chars cmd (#2782)
2020-12-08 18:43:46 +01:00
mod
chars
;
Add dice subcommand to random command (#2082) * Add dice subcommand to random command * Update random dice test name * Stream results of random dice * Thanks Clippy!
2020-06-30 06:12:51 +02:00
mod
dice
;
Rename `random decimal` to `random float` (#10320) # Description Similar to #9979 # User-Facing Changes `random decimal` will now raise a warning and can be removed in an upcoming release. New command is named `random float` # Tests + Formatting Tests updated and improved.
2023-09-12 13:03:05 +02:00
mod
float
;
Use `int` type name consistently (#10579) # Description When referring to the type use `int` consistently. Only when referring to the concept of integer numbers use `integer`. - Fix `random integer` to `random int` tests - Forgot in #10520 - Use int instead of integer in error messages - Use int type name in bits commands - Fix messages in `for` examples - Use int typename in `into` commands - Use int typename in rest of commands - Report errors in `nu-protocol` with int typename Work for #10332 # User-Facing Changes User errorrs should now use `int` so you can easily find the necessary commands or type annotations. # Tests + Formatting Only two tests found that needed updating
2023-10-03 18:24:32 +02:00
mod
int
;
Add wasm support (#2199) * Working towards a PoC for wasm * Move bson and sqlite to plugins * proof of concept now working * tests are green * Add CI test for --no-default-features * Fix some tests * Fix clippy and windows build * More fixes * Fix the windows build * Fix the windows test
2020-07-18 03:59:23 +02:00
#[
cfg(feature =
"
uuid_crate
"
)
]
Adds random command with uuid subcommand (#2050)
2020-06-25 07:51:09 +02:00
mod
uuid
;
Reference in New Issue
Copy Permalink