MCPcopy Create free account
hub / github.com/OpenDungeons/OpenDungeons / randuint

Function randuint

source/utils/Random.cpp:61–64  ·  view source on GitHub ↗

\brief random unsigned integer [lo;hi]

Source from the content-addressed store, hash-verified

59
60//! \brief random unsigned integer [lo;hi]
61static unsigned int randuint(unsigned int lo, unsigned int hi)
62{
63 return static_cast<unsigned int>(uniform() * (hi - lo + 1) + lo);
64}
65
66
67namespace Random

Callers 1

UintFunction · 0.85

Calls 1

uniformFunction · 0.85

Tested by

no test coverage detected