Instance Propertyswift-algorithms 1.2.1Algorithms
startIndex
Chunked.swift:168var startIndex: Index { get }
var startIndex: Index { get }
s10Algorithms19ChunkedOnCollectionV10startIndexAA0b2ByD0V0F0Vyxq__Gvp
What are these?7JW67
where Base:Collection, Subject:Equatable
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct ChunkedOnCollection<Base, Subject> where Base : Collection, Subject : Equatable
A collection wrapper that breaks a collection into chunks based on a predicate.
typealias Index = ChunkedByCollection<Base, Subject>.Index
protocol Collection<Element> : Sequence
A sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
protocol Equatable
A type that can be compared for value equality.
var endIndex: Index { get }
subscript(position: Index) -> (Subject, Base.SubSequence) { get }
func index(after i: Index) -> Index