Crate leaklist

source ·
Expand description

A simple, concurrent, lock-free, singly-linked list. Only supports prepending items, and will leak an allocation for each new element!

This type of list can be useful for setting up a chain of objects that only need to be initialized once and will live for the duration of the program.

Structs