[][src]Type Definition typed_generational_arena::TinyWrapArena

type TinyWrapArena<T> = Arena<T, u16, NonzeroWrapGeneration<u16>>;

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