Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 11b2b45

Browse files
committedFeb 19, 2018
Add example and test: distribution usage with type-erased Rng
1 parent 3f0892a commit 11b2b45

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎src/distributions/mod.rs

+12
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,18 @@ impl<'a, T, D: Distribution<T>> Distribution<T> for &'a D {
173173
/// println!("f32 from [0,1): {}", val);
174174
/// ```
175175
///
176+
/// With dynamic dispatch (type erasure of `Rng`):
177+
///
178+
/// ```rust
179+
/// use rand::{thread_rng, Rng, RngCore};
180+
/// use rand::distributions::Uniform;
181+
///
182+
/// let mut rng = thread_rng();
183+
/// let mut erased_rng: &mut RngCore = &mut rng;
184+
/// let val: f32 = erased_rng.sample(Uniform);
185+
/// println!("f32 from [0,1): {}", val);
186+
/// ```
187+
///
176188
/// [`Open01`]: struct.Open01.html
177189
/// [`Closed01`]: struct.Closed01.html
178190
/// [`Exp1`]: struct.Exp1.html

‎src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1418,6 +1418,7 @@ mod test {
14181418
#[test]
14191419
#[cfg(any(feature="std", feature="alloc"))]
14201420
fn test_rng_trait_object() {
1421+
use distributions::{Distribution, Uniform};
14211422
let mut rng = rng(109);
14221423
{
14231424
let mut r = &mut rng as &mut RngCore;
@@ -1428,6 +1429,7 @@ mod test {
14281429
let b: &[_] = &[1, 1, 1];
14291430
assert_eq!(v, b);
14301431
assert_eq!(r.gen_range(0, 1), 0);
1432+
let _c: u8 = Uniform.sample(&mut r);
14311433
}
14321434
{
14331435
let mut r = Box::new(rng) as Box<RngCore>;
@@ -1438,6 +1440,7 @@ mod test {
14381440
let b: &[_] = &[1, 1, 1];
14391441
assert_eq!(v, b);
14401442
assert_eq!(r.gen_range(0, 1), 0);
1443+
let _c: u8 = Uniform.sample(&mut r);
14411444
}
14421445
}
14431446

0 commit comments

Comments
 (0)
Please sign in to comment.