[][src]Type Definition compact_arena::Idx8

type Idx8<'tag> = Idx<'tag, u8>;

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<'_>>(), size_of::<u8>());