Instance Subscriptswift-algorithms 1.2.1Algorithms
subscript(_:)
Intersperse.swift:146subscript(position: Index) -> Element { get }
subscript(position: Index) -> Element { get }
s10Algorithms20InterspersedSequenceVAASlRzrlEy7ElementQzAcASlRzrlE5IndexVyx_Gcip
What are these?201SY
where Base:Collection
import Algorithms
Swift Algorithms is an open-source package of sequence and collection algorithms, along with their related types.
struct InterspersedSequence<Base> where Base : Sequence
A sequence that presents the elements of a base sequence of elements with a separator between each of those elements.
struct Index
A position in an InterspersedSequence
instance.
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 }
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?
func index(after i: Index) -> Index