Instance Propertyswift-algorithms 1.2.1Algorithms
endIndex
Intersperse.swift:130var endIndex: Index { get }var endIndex: Index { get }s10Algorithms20InterspersedSequenceVAASlRzrlE8endIndexAcASlRzrlE0E0Vyx_Gvp What are these?3MUEZwhere Base:Collectionimport AlgorithmsSwift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct InterspersedSequence<Base> where Base : SequenceA sequence that presents the elements of a base sequence of elements with a separator between each of those elements.
struct IndexA position in an InterspersedSequence instance.
protocol Collection<Element> : SequenceA sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
var startIndex: Index { get }subscript(position: Index) -> Element { get } func distance(from start: Index, to end: Index) -> Int func index(_ index: Index, offsetBy distance: Int) -> Index func index(_ index: Index, offsetBy distance: Int, limitedBy limit: Index) -> Index? func index(after i: Index) -> Index