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.

Methods

auto next() -> Option<sus::collections::RSplitMut::Item>
auto next_back() -> Option<sus::collections::RSplitMut::Item>
auto size_hint() const -> SizeHint