Instance Propertyswift-algorithms 1.2.1Algorithms
endIndex
Chunked.swift:95var endIndex: Index { get }
var endIndex: Index { get }
s10Algorithms19ChunkedByCollectionV8endIndexAC0F0Vyxq__Gvp
What are these?5OQSQ
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 startIndex: Index { get }
subscript(position: Index) -> Base.SubSequence { get }
func index(after i: Index) -> Index