Instance Methodswift-algorithms 1.2.1Algorithms
next
Joined.swift:48mutating func next() -> Base.Element.Element?
mutating func next() -> Base.Element.Element?
s10Algorithms16JoinedBySequenceV8IteratorV4next7ElementQy_SgyF
What are these?3ATMP
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct Iterator
struct JoinedBySequence<Base, Separator> where Base : Sequence, Separator : Sequence, Base.Element : Sequence, Separator.Element == Base.Element.Element
A sequence that presents the elements of a base sequence of sequences concatenated using a given separator.
associatedtype Element where Self.Element == Self.Iterator.Element
A type representing the sequence’s elements.