Type Aliasswift 6.0.3Swift
SubSequence
typealias SubSequence = Slice<Int64.Words>
typealias SubSequence = Slice<Int64.Words>
import Swift
@frozen struct Words
A type that represents the words of this integer.
@frozen struct Int64
A 64-bit signed integer value type.
@frozen struct Slice<Base> where Base : Collection
A view into a subsequence of elements of another collection.
init(_ value: Int64)
var count: Int { get }
var endIndex: Int { get }
var indices: Int64.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 Indices = Range<Int>