[][src]Crate stable_vec

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:

This example is not tested
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.

Keys

Iterator over all valid indices of a StableVec.

StableVec

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