Trait monster::incubation::slice_drop_first::SliceDropFirst [] [src]

pub trait SliceDropFirst {
    fn drop_first(self, n: usize) -> Self;
}

Required Methods

Drop the first n elements from the slice. If n is bigger than the slice's length an empty slice will be returned.

Implementors