Skip to content

Version 1.0.0

Compare
Choose a tag to compare
@shadowcodex shadowcodex released this 10 Feb 22:52
· 16 commits to master since this release
e5a3eff

Redid the pop/top of current stacks.

  • Normal JS implementation I see around the internet is the UArrayStack of stacks. It's simple and people don't think much about it.
  • I built a bounded version which doesn't deal with growing items
  • LinkedStack is a stack built ontop of a linked list.