Crate cons_rs

Source
Expand description

A crate that contains a singly linked list.

Note: This is different from the standard LinkedList, which is doubly linked.

Modules§

immutable
An immutable list using Rc.

Structs§

IntoIter
An iterator that yields all the elements in a List by value.
Iter
An iterator that yields shared references to all the elements in a List.
IterMut
An iterator that yields mutable references to all the elements in a List.
List
A singly linked list. See the crate-level documentation for more.