Skip to main content

Mojo module

linked_list

Implements a doubly-linked list data structure.

This module provides the LinkedList type, a doubly-linked list where each element points to both the next and previous elements. This structure enables efficient insertion and deletion at any position, though random access requires traversal. The implementation includes iterator support for forward and reverse traversal.

Structsโ€‹

Was this page helpful?