Std.Random.between
1 declaration
fn
between: &Std.Random.Generator -> N -> N -> (Std.Random.Generator, N) where N: IntegerThis is a callable function.
What it does
A number between two bounds, the lower included and the upper excluded.
Both bounds and the answer share the caller's type.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
- & borrows a value for this call instead of moving or copying it.
