slabigator 0.1.4

A linked list that doesn't do dynamic memory allocations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[![CI](https://github.com/jedisct1/rust-slabigator/actions/workflows/ci.yml/badge.svg)](https://github.com/jedisct1/rust-slabigator/actions/workflows/ci.yml)

# Slabigator

A linked list that doesn't do dynamic memory allocations.

Things it was designed to do:

- Add to the head of the list in O(1) - What you get back is a stable slot number
- Pop from the tail of the list in O(1)
- Delete an element given its slot number in O(1)
- And nothing else.

Dumb, small, maintainable, zero dependencies.