Checks if at least one element satisfies a given condition
bool any(bool Function(T element) test) { for (var element in this) { if (test(element)) return true; } return false; }