Crates.io | genindex |
lib.rs | genindex |
version | 0.2.2 |
source | src |
created_at | 2024-03-20 05:39:07.755887 |
updated_at | 2024-04-12 23:26:03.336165 |
description | Generational index library |
homepage | https://github.com/andykswong/muds |
repository | https://github.com/andykswong/muds |
max_upload_size | |
id | 1180011 |
size | 22,598 |
genindex
is a no-std library for generational index, which is a number encoded as index + generation value. It is mainly used as a weak reference to array values. The generation part allows indices to be reused without suffering from ABA problem, so that data can be safely stored in a packed array.
[dependencies]
genindex = "0.2"
Features:
serde
- enables serde
serialize/deserialize implementations of collections and indicesSee Docs.rs: https://docs.rs/genindex
This repository and the code inside it is licensed under the MIT License. Read LICENSE for more information.