Skip to content

Releases: LastTalon/linked-list

Linked List v0.1.0

11 Aug 20:48
v0.1.0
a023a5c
Compare
Choose a tag to compare

The initial release of the Linked List! 🎉

Added

  • This release adds basic linked list functionality
    • Pushing, popping, shifting, unshifting, and peeking for basic list manipulation
    • Forward and reverse iteration over the list
  • This includes a basic Entry object to provide an entry reference to list elements, allowing constant time complexity operations
    • For the moment this only includes constant time removal. This doesn't break iteration, allowing you to remove entries while iterating.

For more details, view the full changelog, or check out our documentation.