genindex 0.2.2

Generational index library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Generational index library.

#![no_std]

#[cfg(test)]
extern crate alloc;

mod genindex;
mod indexf64;
mod indexu64;
mod newtype;
mod pair;

pub use genindex::*;
pub use indexf64::*;
pub use indexu64::*;
pub use newtype::*;
pub use pair::*;