linked_lists 0.1.7

Different types of linked lists.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A singly linked persistent list using `Rc`.
//! 
//! Because this list uses [`Rc`], it is not thread-safe.
//! If you need this to be thread-safe, enable the `persistent_arc`
//! crate feature, and use the [`persistent_arc`] module instead.
//! That module has the exact same API as this one.
//! 
//! [`persistent_arc`]: crate::persistent_arc
use alloc::rc::Rc;

version!{1, 2, 0}

make_list!{Rc;
/// A singly linked shared persistent list that is not thread safe.
/// See the [module-level documentation](self) for more.
}

tests!{}