Trait mines::SliceExt [] [src]

pub trait SliceExt<T> {
    unsafe fn boom_get(&self, index: usize) -> &T;
    unsafe fn boom_get_mut(&mut self, index: usize) -> &mut T;
}

boom extensions to [T].

Required Methods

boom variant of get.

boom variant of get_mut.

Implementors