Instance Methodswift-algorithms 1.2.1Algorithms
next
Split.swift:103mutating func next() -> Element?
mutating func next() -> Element?
s10Algorithms13SplitSequenceV8IteratorV4nextSay7ElementQzGSgyF
What are these?3A3JD
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct Iterator
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.
typealias Element = [Base.Element]