Returns true if any element matches the predicate.
true
final hasLarge = DoubleStream.of([1.5, 2.5, 3.5]) .anyMatch((d) => d > 3.0); // true
bool anyMatch(bool Function(double) predicate);