general_stable_vec/
lib.rs

1//! A general stable vector implementation.
2//!
3//! A stable vector is a vector for which each inserted element keeps its index until it is removed.
4
5#![warn(missing_docs)]
6
7pub mod error;
8pub mod implementation;
9pub mod interface;