Instance Propertyswift-algorithms 1.2.1Algorithms
startIndex
Reductions.swift:287var startIndex: Index { get }
var startIndex: Index { get }
s10Algorithms27ExclusiveReductionsSequenceVAASlRzrlE10startIndexAcASlRzrlE0F0Vyxq__Gvp
What are these?4DZ6H
where Base:Collection
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct ExclusiveReductionsSequence<Base, Result> where Base : Sequence
A sequence of applying a transform to the element of a sequence and the previously transformed result.
struct Index
protocol Collection<Element> : Sequence
A sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
var endIndex: Index { get }
subscript(position: Index) -> Result { get }
func distance(from start: Index, to end: Index) -> Int
func index(after index: Index) -> Index