Instance Methodswift-algorithms 1.2.1Algorithms
index(_:offsetBy:)
Intersperse.swift:167func index(_ index: Index, offsetBy distance: Int) -> Index
func index(_ index: Index, offsetBy distance: Int) -> Index
s10Algorithms20InterspersedSequenceVAASlRzrlE5index_8offsetByAcASlRzrlE5IndexVyx_GAH_SitF
What are these?1OOHJ
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.
@frozen struct Int
A signed integer value type.
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) -> Element { get }
func distance(from start: Index, to end: Index) -> Int
func index(_ index: Index, offsetBy distance: Int, limitedBy limit: Index) -> Index?
func index(after i: Index) -> Index