any method
Checks if any bit is set to true.
Implementation
bool any() {
for (int word in _words) {
if (word != 0) return true;
}
return false;
}
Checks if any bit is set to true.
bool any() {
for (int word in _words) {
if (word != 0) return true;
}
return false;
}