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>
Expand description
Insert a new chunk at the front of a LinkedChunk
.