smol-rs / fastrand

A simple and fast random number generator
Apache License 2.0
386 stars 33 forks source link

documentaion on fork() is confusing #61

Closed ra1u closed 1 year ago

ra1u commented 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.