Class Subspace :: sus :: collections :: RSplitMut
template <class ItemT, class Pred>class RSplitMut final
requires
sus::fn::FnMut<Pred, _Bool (const ItemT &)>
{ ... };
An iterator over the subslices of the vector which are separated by elements that match pred, starting from the end of the slice.
This struct is created by the rsplit_mut()
method on slices.