Closed ra1u closed 1 year ago
https://docs.rs/fastrand/2.0.0/fastrand/struct.Rng.html#method.fork
What is confusing is documentation
Clones the generator by deterministically deriving a new generator based on the initial seed.
Presented example is now about clone(&self) not fork(&mut self) that behaves differently as far as I understand.
clone(&self)
fork(&mut self)
https://docs.rs/fastrand/2.0.0/fastrand/struct.Rng.html#method.fork
What is confusing is documentation
Presented example is now about
clone(&self)
notfork(&mut self)
that behaves differently as far as I understand.