Crate weak_lists

Source
Expand description

This crate provides list types that hold weak references to their elements. These lists allow concurrent iteration over and modification of the lists with reasonable outcomes.

Re-exports§

pub use sync::SyncWeakList;
pub use sync::SyncWeakListElement;
pub use unsync::WeakList;
pub use unsync::WeakListElement;

Modules§

sync
The thread-safe version of the list.
unsync
The single-threaded version of the list.