Function insert_new_first_chunk

Source
pub fn insert_new_first_chunk<const CAP: usize, Item, Gap>(
    linked_chunk: &mut LinkedChunk<CAP, Item, Gap>,
    new_first_chunk: RawChunk<Item, Gap>,
) -> Result<(), LazyLoaderError>
where Item: Clone, Gap: Clone,
Expand description

Insert a new chunk at the front of a LinkedChunk.