Module deepmesa::lists[][src]

Expand description

A collection of list data structures and algorithms designed for performance

Modules

This module contains structs specific to the LinkedList

Structs

A fast doubly linked list that owns the nodes and can pre-allocate memory for performance. This linked list allows pushing and popping elements at either end or in the middle in constant time.