Files @ 75e767adaaf7
Branch filter:

Location: CSY/reowolf/src/collections/mod.rs

75e767adaaf7 296 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
MH
Add a new RawArray implementation

Needed to implement ringbuffer queues in a neat way. Will deprecate the
old RawVec implementation
mod string_pool;
mod scoped_buffer;
mod sets;
mod raw_vec; // TODO: Delete?
mod raw_array;

// mod freelist;

pub(crate) use string_pool::{StringPool, StringRef};
pub(crate) use scoped_buffer::{ScopedBuffer, ScopedSection};
pub(crate) use sets::{DequeSet, VecSet};
pub(crate) use raw_vec::RawVec;