Expand description
A crate that contains a singly linked list.
Note:
This is different from the standard LinkedList,
which is doubly linked.
Modules
- An immutable list using
Rc.
Structs
- An iterator that yields all the elements in a
Listby value. - An iterator that yields immutable references to all the elements in a
List. - An iterator that yields mutable references to all the elements in a
List. - A singly linked list. See the crate-level documentation for more.