reset method

void reset()

Resets the random number generator to its initial state.

Implementation

void reset() {
  _random = Random(_seed);
}