Skip to content

v0.0.1

Choose a tag to compare

@pivovarit pivovarit released this 01 Mar 07:59
· 51 commits to main since this release

giphy

The initial version of the library including:

Provided Gatherers:

  • MoreGatherers.last(int)
  • MoreGatherers.sampling(int)
  • MoreGatherers.zip(Iterator<T2>)
  • MoreGatherers.zip(Iterator<T2>, BiFunction<T1,T2>)
  • MoreGatherers.zip(Stream<T2>)
  • MoreGatherers.zip(Stream<T2>, BiFunction<T1,T2>)
  • MoreGatherers.zipWithIterable(Iterable<T2>)
  • MoreGatherers.zipWithIterable(Iterable<T2>, BiFunction<T1,T2>)
  • MoreGatherers.zipWithIndex()
  • MoreGatherers.zipWithIndex(BiFunction<Long,T>)
  • MoreGatherers.distinctBy(Function<T, R>)
  • MoreGatherers.distinctByKeepLast(Function<T, R>)
  • MoreGatherers.distinctUntilChanged()
  • MoreGatherers.distinctUntilChanged(Function<T, R>)
  • MoreGatherers.windowSliding(int, int)
  • MoreGatherers.filteringByIndex(BiPredicate<Long, T>)
  • MoreGatherers.groupingBy(Function<T, K>, Collector<T, ?, R>)