pub type LinkedList<T> = DoublyLinkedList<OptionNode<T>>;
Expand description

The underlying memory is an array of pointers. Indirection performance penalties will apply
‘T’ can be pretty much anything.