Instance Methodswift-algorithms 1.2.1Algorithms
next
Chain.swift:47mutating func next() -> Base1.Element?
mutating func next() -> Base1.Element?
s10Algorithms14Chain2SequenceV8IteratorV4next7ElementQzSgyF
What are these?FX74
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct Iterator
The iterator for a Chain2Sequence
instance.
struct Chain2Sequence<Base1, Base2> where Base1 : Sequence, Base2 : Sequence, Base1.Element == Base2.Element
A concatenation of two sequences with the same element type.
associatedtype Element where Self.Element == Self.Iterator.Element
A type representing the sequence’s elements.