Instance Propertyswift-algorithms 1.2.1Algorithms
endIndex
Chain.swift:117var endIndex: Index { get }
var endIndex: Index { get }
s10Algorithms14Chain2SequenceVAASlRzSlR_rlE8endIndexAcASlRzSlR_rlE0E0Vyxq__Gvp
What are these?85RER
where Base1:Collection, Base1.Element == Base2.Element, Base2:Collection
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct Chain2Sequence<Base1, Base2> where Base1 : Sequence, Base2 : Sequence, Base1.Element == Base2.Element
A concatenation of two sequences with the same element type.
struct Index
A position in a Chain2Sequence
instance.
protocol Collection<Element> : Sequence
A sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
var startIndex: Index { get }
subscript(i: Index) -> Base1.Element { get }
func distance(from start: Index, to end: Index) -> Int
func index(_ i: Index, offsetBy distance: Int) -> Index
func index(_ i: Index, offsetBy distance: Int, limitedBy limit: Index) -> Index?
func index(after i: Index) -> Index