A linked list that doesn't do dynamic memory allocations.
Things it was designed to do:
Dumb, small, maintainable, zero dependencies.
Cargo features:
unsafe
: assume that remove()
will always be called with a valid index. This saves some memory, but has to be used with extreme caution. That feature is not set by default.