fast-list 0.1.8

A doubly linked list using SlotMap for improved cache locality, and to solve the ABA problem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![crate_name = "fast_list"]

#![doc = include_str!("../README.md")]

mod linked_list;
mod walker;

pub use linked_list::*;

#[cfg(feature = "unstable")]
pub use walker::*;