Instance Methodswift-algorithms 1.2.1Algorithms
makeIterator
Split.swift:91func makeIterator() -> Iterator
func makeIterator() -> Iterator
s10Algorithms13SplitSequenceV12makeIteratorAC0E0Vyx_GyF
What are these?4X4WO
where Base:Sequence
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct SplitSequence<Base> where Base : Sequence
A sequence that lazily splits a base sequence into subsequences separated by elements that satisfy the given whereSeparator
predicate.
struct Iterator
protocol Sequence<Element>
A type that provides sequential, iterated access to its elements.