Crate stable_vec

source ·
Expand description

A Vec<T>-like collection which guarantees stable indices and features O(1) deletion of elements.

This crate provides a simple stable vector implementation. You can find nearly all the relevant documentation on the type StableVec.


In order to use this crate, you have to include it into your Cargo.toml:

[dependencies]
stable_vec = "0.2"

… as well as declare it at your crate root:

extern crate stable_vec;

use stable_vec::StableVec;

Structs

Iterator over immutable references to the elements of a StableVec.
Iterator over mutable references to the elements of a StableVec.
Iterator over all valid indices of a StableVec.
A Vec<T>-like collection which guarantees stable indices and features O(1) deletion of elements.