Skip to content

v1.1.5

Compare
Choose a tag to compare
@aNNiMON aNNiMON released this 30 Jan 12:03
· 244 commits to master since this release
  • Added Stream.ofNullable(T element) and Stream.ofNullable(iterable) methods
  • Added Stream.toList() which can be much faster and convenient than collect(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