any method

bool any()

Checks if any bit is set to true.

Implementation

bool any() {
  for (int word in _words) {
    if (word != 0) return true;
  }
  return false;
}