[][src]Type Definition compact_arena::Idx8

type Idx8<B> = Idx<u8, B>;

The index type for a nano arena is 8 bits large. You will usually get the index from the arena and use it by indexing, e.g. arena[index].

Examples:

assert_eq!(size_of::<Idx8<i128>>(), size_of::<u8>());