Random Package Documentation Build

The packages provides sources of randomness.

Example

```rust use random::Source;

let mut source = random::default().seed([42, 69]); println!("Scalar: {:?}", source.read::()); println!("Vector: {:?}", source.iter().take(2).collect::>()); ```

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.