Type Alias SplitInclusiveMut

Source
pub type SplitInclusiveMut<'a, P, T = Entity> = UniqueEntityEquivalentSliceIterMut<'a, T, SplitInclusiveMut<'a, T, P>>;
Expand description

An iterator over the mutable subslices of the vector which are separated by elements that match pred. Unlike SplitMut, it contains the matched parts in the ends of the subslices.

This struct is created by UniqueEntityEquivalentSlice::split_inclusive_mut.

Aliased Typeยง

struct SplitInclusiveMut<'a, P, T = Entity> { /* private fields */ }