any method
Implementation
bool any(Query3UntilCallback<A, B, C> predicate) {
var found = false;
eachUntil((entity, a, b, c) {
if (predicate(entity, a, b, c)) {
found = true;
return false;
}
return true;
});
return found;
}