teslamotors / fixed-containers

C++ Fixed Containers
MIT License
352 stars 31 forks source link

Add barebones FixedLinkedList #92

Closed Bobobalink closed 4 months ago

Bobobalink commented 5 months ago

This is a bare-bones LinkedList implementation using FixedIndexPoolStorage and indices for the "next" and "prev" pointer. It is implemented as a circular linked list with a sentinel node for the start/end.