forAll method
Implementation
bool forAll(DescentCallback cb) {
if (cb(this) == false) {
return false;
}
forEachChild(cb);
return true;
}
bool forAll(DescentCallback cb) {
if (cb(this) == false) {
return false;
}
forEachChild(cb);
return true;
}