Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Releases: mtoohey31/iter

v2.0.1

11 Jun 02:01
4f5f455
Compare
Choose a tag to compare
  • Added GroupBy
  • Doc updates

v2.0.0

05 Sep 20:17
Compare
Choose a tag to compare

Breaking Changes

  • A few changes have been made in order to avoid the need for runtime checks and explicit panics:
    • Take's n parameter is now of type uint instead of int to enforce that it must be non-negative
    • StepBy ~> Skipping: Skipping(uint(m)) is equivalent to StepBy(m+1), except that no runtime check is required since n must be positive so there is no risk of a panic
    • Windows ~> Seqs: Seqs(unit(m)) is also equivalent to Windows(m+1), but again, there's no longer a runtime check and a risk of panicking
  • Position ~> Pos: the Position function has been converted to a method with a shorter name
  • Removed Endo suffixes: these were unnecessary since having methods and functions with the same name doesn't cause issues
  • KVZip -> KVZipStrict, KVZipChannelled -> KVZipLazy: this was done to better explain the significance of these two variants, and the godocs were also updated

v1.0.0

16 Mar 15:21
Compare
Choose a tag to compare
feat: v1 release

v0.2.0-alpha

23 Jan 22:19
Compare
Choose a tag to compare
v0.2.0-alpha Pre-release
Pre-release
docs: remove note about examples since they're gone

v0.1.0-alpha

10 Jan 04:10
Compare
Choose a tag to compare
v0.1.0-alpha Pre-release
Pre-release
docs(Gen, GenWhile): add godocs