onebuck 0.1.2

An efficient unordered dynamically-sized data structure.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# onebuck

[![Crate](https://img.shields.io/crates/v/onebuck.svg)](https://crates.io/crates/onebuck)

An efficient unordered dynamically-sized data structure.

## Time Complexity

| Method | Time |
| ------ | ---- |
| insert | O(1) |
| remove | O(1) |
| grow   | O(k) |
| shrink | O(k) |
- k => original capacity

## Memory Fragmentation

- Due to compaction on removal, this is essentially disregarded, resulting in incredibly fast iteration.