gvec 0.3.0

Very simple implementation of generational indexing for vectors written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# gvec

**gvec** is a simple library for Generational Vecs and Indices written in Rust. It simply deals with insertion and removal of elements/values to the vector itself, while avoiding use-after-free scenarios and reusing available space.

## Current features

* Insertion
* Removal

## Possible new features

* Automatic reallocation when the vector is full
* "vec![]"-like macro
* Iterator