open_linked_list 0.1.0

A linked list which allows unsafely mutating, removing, and adding elements in the middle of the list through a pointer.
Documentation
1
2
3
4
5
# Open linked list

A linked list implementation that allows to unsafely mutate, insert, and remove elements from the middle of the list through a pointer.  
Potentially unsafe operations must be marked as unsafe by the user.