Returns the first element of the stream, if present.
final first = IntStream.range(1, 5).findFirst(); // Optional(1)
Optional<int> findFirst();