Skip to content

Latest commit

 

History

History

genindex

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

genindex

license: MIT Crates.io docs.rs build

Overview

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.

Install

[dependencies]
genindex = "0.2"

Features:

  • serde - enables serde serialize/deserialize implementations of collections and indices

License

This repository and the code inside it is licensed under the MIT License. Read LICENSE for more information.