general_stable_vec 0.15.0

A Vec implementation with stable indices
Documentation
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;