[][src]Type Definition typed_generational_arena::NanoArena

type NanoArena<T> = Arena<T, u8, Wrapping<u8>>;

An arena which can only hold up to (2^{8}) elements, but unlimited generations, with the caveat that generations after (2^{8}) wrap and hence may collide, leading, for example, to reading a new value when the old one was deleted.