Files @ 1677e0c9568d
Branch filter:

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

1677e0c9568d 327 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
MH
Halfway implementing failure, fixing bug involving wrong mapping
mod string_pool;
mod scoped_buffer;
mod sets;
mod raw_vec;

// TODO: Finish this later, use alloc::alloc and alloc::Layout
// 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;