updateCache method

void updateCache()

Marks the internal cache as stale. After calling this function the methods next and perturb will return a new random number sampled from the interval start...end.

Implementation

void updateCache() {
  _isUpToDate = false;
}