macro_rules! rand_poisson { ($rng:expr, $mean:expr) => { ... }; }
Poisson sample with the given mean.
use vrd::{Random, rand_poisson}; let mut rng = Random::from_u64_seed(42); let p = rand_poisson!(rng, 3.0);