[#MakeExponentiallyDistributed] = MakeExponentiallyDistributed :mrdocs: Given a uniformly random uint64_t, return an exponentially distributed double with mean 1. == Synopsis Declared in `<random.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- double MakeExponentiallyDistributed(uint64_t uniform) noexcept; ---- == Return Value An exponentially distributed double with mean 1. == Parameters [cols="1,4"] |=== | Name| Description | *uniform* | A uniformly distributed random 64‐bit value. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#