Instance Propertyswift-algorithms 1.2.1Algorithms
startIndex
Chunked.swift:90var startIndex: Index { get }
var startIndex: Index { get }
s10Algorithms19ChunkedByCollectionV10startIndexAC0F0Vyxq__Gvp
What are these?41GI
where Base:Collection
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct ChunkedByCollection<Base, Subject> where Base : Collection
A collection wrapper that breaks a collection into chunks based on a predicate.
struct Index
A position in a chunked collection.
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) -> Base.SubSequence { get }
func index(after i: Index) -> Index