Returns any element of the stream.
final any = DoubleStream.of([1.5, 2.5, 3.5]).findAny(); // Optional(some element)
Optional<double> findAny();