v1.1.5
- Added
Stream.ofNullable(T element)
andStream.ofNullable(iterable)
methods - Added
Stream.toList()
which can be much faster and convenient thancollect(Collectors.toList())
(thanks to @akonior for both great ideas) - Fixed NPE in
flatMap
iterator of primitive streams - New faster implementation of
Stream.distinct()
- Added
iterate(T seed, Predicate p, UnaryOperator op)
method for all streams