//! 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 Rc;
version!
make_list!
tests!