pub type PicoArena<T> = Arena<T, u8, NonzeroWrapGeneration<u8>>;
Expand description
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.
Aliased Typeยง
struct PicoArena<T> { /* private fields */ }