Type Alias TinyWrapArena

Source
pub type TinyWrapArena<T> = Arena<T, u16, NonzeroWrapGeneration<u16>>;
Expand description

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.

Aliased Typeยง

struct TinyWrapArena<T> { /* private fields */ }