#linked-list #different #type #no-std

linked_lists

Different types of linked lists

8 releases

0.1.7 Jul 3, 2023
0.1.6 Jul 1, 2023
0.1.5 Jun 20, 2023

#2003 in Data structures

Download history 4/week @ 2024-02-24 2/week @ 2024-03-09 42/week @ 2024-03-30 10/week @ 2024-04-06

52 downloads per month

MIT license

25KB
600 lines

linked_lists

A crate containing many different types of linked lists.

no_std:

linked_lists is no_std. However, it still requires alloc.

Currently existing lists:

  • stack (1.4.0): A singly linked list with stack operations.
  • persistent (1.2.0): A persistent immutable non-thread safe list.
  • persistent_arc (1.2.0): A persistent immutable thread safe list.

lib.rs:

A crate containing many types of linked lists.

Each different list is enabled with a cargo feature.

No runtime deps

Features