Crate stable_vec [] [src]

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 this crate's only type: StableVec.


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

[dependencies]
stable_vec = "0.1"

... as well as declare it at your crate root:

extern crate stable_vec;

use stable_vec::StableVec;

Structs

Iter

Iterator over immutable references to the elements of a StableVec.

IterMut

Iterator over mutable references to the elements of a StableVec.

StableVec

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