splitInclusive method
Returns an iterator over subslices separated by elements that match pred. The matched element is contained in the end of the previous subslice as a terminator. see split also.
Implementation
RIterator<Slice<T>> splitInclusive(bool Function(T) pred) {
return RIterator(_splitInclusiveHelper(pred).iterator);
}