2015-02-03 16:57:35 +11:00
rand
====
A Rust library for random number generators and other randomness functionality.
2015-09-21 17:01:51 -07:00
[](https://travis-ci.org/rust-lang-nursery/rand)
2015-04-29 10:43:14 -07:00
[](https://ci.appveyor.com/project/alexcrichton/rand)
2015-02-03 16:57:35 +11:00
2017-06-14 12:24:12 -07:00
[Documentation ](https://docs.rs/rand )
2015-02-03 16:57:35 +11:00
## Usage
Add this to your `Cargo.toml` :
```toml
[dependencies]
2015-03-28 10:18:39 -04:00
rand = "0.3"
2015-02-03 16:57:35 +11:00
```
and this to your crate root:
```rust
extern crate rand;
```
2015-12-10 10:41:58 -05:00
## Examples
There is built-in support for a random number generator (RNG) associated with each thread stored in thread-local storage. This RNG can be accessed via thread_rng, or used implicitly via random. This RNG is normally randomly seeded from an operating-system source of randomness, e.g. /dev/urandom on Unix systems, and will automatically reseed itself from this source after generating 32 KiB of random data.
```rust
let tuple = rand::random::< (f64, char)>();
println!("{:?}", tuple)
```
```rust
use rand::Rng;
let mut rng = rand::thread_rng();
if rng.gen() { // random bool
println!("i32: {}, u32: {}", rng.gen::< i32 > (), rng.gen::< u32 > ())
}
```
It is also possible to use other RNG types, which have a similar interface. The following uses the "ChaCha" algorithm instead of the default.
```rust
use rand::{Rng, ChaChaRng};
let mut rng = rand::ChaChaRng::new_unseeded();
println!("i32: {}, u32: {}", rng.gen::< i32 > (), rng.gen::< u32 > ())
```
2017-06-14 12:22:22 -07:00
# `derive(Rand)`
You can derive the `Rand` trait for your custom type via the `#[derive(Rand)]`
directive. To use this first add this to your Cargo.toml:
```toml
rand = "0.3"
2017-07-30 10:44:50 -07:00
rand_derive = "0.3"
2017-06-14 12:22:22 -07:00
```
Next in your crate:
```rust
extern crate rand;
#[macro_use]
extern crate rand_derive;
#[derive(Rand, Debug)]
struct MyStruct {
a: i32,
b: u32,
}
fn main() {
println!("{:?}", rand::random::< MyStruct > ());
}
```
# License
`rand` is primarily distributed under the terms of both the MIT
2017-10-05 16:12:50 -07:00
license and the Apache License (Version 2.0).
2017-06-14 12:22:22 -07:00
See LICENSE-APACHE, and LICENSE-MIT for details.