Crates.io | stash |
lib.rs | stash |
version | 0.1.6 |
source | src |
created_at | 2016-08-27 19:21:59.827725 |
updated_at | 2024-11-05 02:24:58.291876 |
description | An amortized `O(1)` table for cases where you don't need to choose the keys and want something faster than a HashTable. |
homepage | https://github.com/Stebalien/stash-rs |
repository | https://github.com/Stebalien/stash-rs |
max_upload_size | |
id | 6145 |
size | 89,257 |
Stash is a library for storing items where you need (amortized) O(1)
insertion, deletion, and lookups but don't care about the order of the items and
don't need to be able to choose the keys.
Please see the API documentation for a more detailed description.