general_stable_vec/
lib.rs

1
2
3
4
5
6
7
8
9
//! A general stable vector implementation.
//!
//! A stable vector is a vector for which each inserted element keeps its index until it is removed.

#![warn(missing_docs)]

pub mod error;
pub mod implementation;
pub mod interface;