Skip to content

v0.3.0

Compare
Choose a tag to compare
@Foxcapades Foxcapades released this 06 Feb 14:21
· 5 commits to main since this release
a119755

Breaking Release:

  • No longer implements Kotlin's Collection due to ambiguity over the intent of the iterator method.
  • No longer implements Kotlin's Iterator due to ambiguity over whether the iteration is expected to be destructive.
  • Removed method isEmpty().
  • Removed method hasNext().
  • Removed method iterator().
  • Removed method peekNext().
  • Added inline val isEmpty
  • Added inline val isNotEmpty
  • Added inline val lastIndex
  • Added inline val indices
  • Added method peek()
  • Added method containsAll(vararg T)
  • Added method destructiveIterator()
  • Added method nonDestructiveIterator()
  • Added inline method destructiveForEach(fn)
  • Added inline method nonDestructiveForEach(fn)