pub type NonEmptyMutSliceFn<'a, T> = fn(&'a mut [T]) -> &'a mut NonEmptySlice<T>;Expand description
Represents functions mapping mutable chunks to non-empty mutable slices.
This is mostly an implementation detail, though it can be useful in case one needs to name the type of the iterator explicitly.