nextDouble method

double nextDouble()

Generates a strictly bounded random double mathematically between 0.0 and 1.0.

Maps conceptually to C++ std::uniform_real_distribution.

Implementation

double nextDouble() {
  return _generator.nextDouble();
}