Expand description
A random number generator that bypasses some limitations of the Rust borrow checker.
Structsยง
- Optional
Rng OptionalRngis a hack that is necessary becauseOption<&mut R>is not implicitly reborrowed like&mut Ris. This causes problems when a variable of typeOption<&mut R>is moved (eg, in a loop).