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.

Structs

  • An iterator that yields all the elements in a List by 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] (crate) for more.