Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.22 KB

CHANGELOG.md

File metadata and controls

35 lines (30 loc) · 1.22 KB

0.6.0

  • Implement dropLast(n)
  • Implement grouping() and groupingBy(fn)
  • Add support for zipWith(iterable) and zipWith(iterator)
  • Add support for interleave(iterable) and interleave(iterator)
  • Add support for appendLonger(), appendArgumentIfLonger(), and appendSourceIfLonger() on interleave()
  • Add support for argumentWhenSourceLonger(), sourceWhenArgumentLonger(), nullArgumentWhenSourceLonger(), and nullSourceWhenArgumentLonger on zipWith()

0.5.0

  • Implement reverse()
  • Implement maxBy(fn) and minBy(fn)
  • Implement exactSize(n)

0.4.0

  • Implement suffle() and shuffle(RandomGenerator)
  • Implement filterWithIndex()
  • Implement runningProduct() and runningProductBy()
  • Implement runningSum() and runningSumBy()
  • Remove concat() implementation (the JDK has this)
  • Remove withIndexStartingAt(), not sure if this is a real use case.

0.3.0

  • Move minimum Java version from 22 to 23

0.2.0

  • Added starting point for indexing gatherer
  • Added throttling over a time period
  • Added debounce over a time period

0.1.0

  • Added Standard Deviation (population and sample)
  • Refactored all BigDecimal-based Gatherers
  • Added concat

Initial Release 0.0.1