Random Version Status

The packages provides sources of randomness.

Documentation

Example

```rust use random::Generator;

let mut generator = random::default().seed([42, 69]); let uniforms = (0..100).map(|_| generator.next::()).collect::>(); ```

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.