Releases: k-libs/k-stack
Releases · k-libs/k-stack
v0.3.0
Minor rewrite of the Stack type.
- No longer implements Kotlin's
Collection
type due ambiguity around the iterator. isEmpty
&isNotEmpty
are now inline class properties rather than methods.iterator
renamed todestructiveIterator
- add
lastIndex
- add
nonDesructiveIterator
- add
toArray
- add
popToArray
v0.2.0
Features:
- Adds
get
function for array-style access of the stack. - Adds
clear
function to clear the stack's contents
v0.1.0
Initial release. Contains a basic, functioning stack implementation.