Skip to content

v1.4.0

Compare
Choose a tag to compare
@markrogoyski markrogoyski released this 15 Feb 07:20
· 81 commits to main since this release

New Features

  • Single
    • flatMap
    • flatten
    • reverse
    • slice
  • Summary
    • arePermutations
    • arePermutationsCoercive
    • isPartitioned
  • Transform
    • tee
    • toArray
    • toAssociativeArray
    • toIterator
  • Stream
    • Stream Operations
      • flatMap
      • flatten
      • reverse
      • slice
    • Summary Terminal Operations
      • arePermutationsWith
      • arePermutationsCoerciveWith
      • isPartitioned
    • Transformation
      • tee
      • toArray
      • toAssociativeArray
      • toIterator

Improvements

  • Single::groupBy
    • Allows the original grouping function to further separate into groups if the result of the grouping function is a list.
    • A new parameter added to take a function to index the values within each group.