Returns the maximum element or an empty Optional.
final max = DoubleStream.of([3.5, 1.5, 4.5]).max(); // Optional(4.5)
Optional<double> max();