Given a uniformly random uint64_t, return an exponentially distributed double with mean 1.
Declared in <random.h>
double
MakeExponentiallyDistributed(uint64_t uniform) noexcept;
An exponentially distributed double with mean 1.
| Name | Description |
|---|---|
| uniform | A uniformly distributed random 64-bit value. |