Skip to content

v3.1.0

Compare
Choose a tag to compare
@hdgarrood hdgarrood released this 24 Nov 00:10
· 161 commits to master since this release
  • Significant performance boosts for the following functions:
    • head (now O(1), was accidentally O(n))
    • toUnfoldable
    • span
    • difference
  • Add filterA, which is just like filterM, but faster, and it only requires you to have an Applicative (not necessarily a Monad).
  • Deprecate filterM in favour of filterA. In the next major release, filterM will be removed.
  • Add unsnoc (@joshuahhh).