[][src]Type Definition typed_generational_arena::PicoArena

type PicoArena<T> = Arena<T, u8, NonzeroWrapGeneration<u8>>;

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