Type Aliasswift 6.0.1Swift
Indices
typealias Indices = Range<Int>
typealias Indices = Range<Int>
import Swift
@frozen struct Words
A type that represents the words of this integer.
@frozen struct Int
A signed integer value type.
@frozen struct Range<Bound> where Bound : Comparable
A half-open interval from a lower bound up to, but not including, an upper bound.
init(_ value: Int)
var count: Int { get }
var endIndex: Int { get }
var indices: Int.Words.Indices { get }
var startIndex: Int { get }
subscript(position: Int) -> UInt { get }
func index(after i: Int) -> Int
func index(before i: Int) -> Int
typealias SubSequence = Slice<Int.Words>