Instance Methodswift-algorithms 1.2.1Algorithms
index(after:)
Joined.swift:279func index(after index: Index) -> Index
func index(after index: Index) -> Index
s10Algorithms25JoinedByClosureCollectionV5index5afterAC5IndexVyxq__GAH_tF
What are these?37CUN
where Base:Collection, Base.Element:Collection, Separator:Collection, Separator.Element == Base.Element.Element
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct JoinedByClosureCollection<Base, Separator> where Base : Collection, Separator : Collection, Base.Element : Collection, Separator.Element == Base.Element.Element
A collection that presents the elements of a base collection of collections concatenated using a given separator that depends on the collections right before and after it.
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 }
var startIndex: Index { get }
subscript(position: Index) -> Base.Element.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?