boolean method

bool boolean()

Generate random boolean.

Implementation

bool boolean() {
  Random _rnd = Random();

  return _rnd.nextBool();
}