Type Aliasswift 6.0.3Swift
SubSequence
You’re reading documentation from an older version of Swift 6.1.
A symbol with the same signature as this one exists in the latest stable release of Swift 6.1.
typealias SubSequence = Slice<UInt8.Words>You’re reading documentation from an older version of Swift 6.1.
A symbol with the same signature as this one exists in the latest stable release of Swift 6.1.
typealias SubSequence = Slice<UInt8.Words>import Swift@frozen struct WordsA type that represents the words of this integer.
@frozen struct UInt8An 8-bit unsigned integer value type.
@frozen struct Slice<Base> where Base : CollectionA view into a subsequence of elements of another collection.
init(_ value: UInt8) var count: Int { get }var endIndex: Int { get }var indices: UInt8.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>