Type Aliasswift 6.0.1Swift
SubSequence
- iOS
- 18.0+
- macOS
- 15.0+
- tvOS
- 18.0+
- visionOS
- 2.0+
- watchOS
- 11.0+
typealias SubSequence = Slice<UInt128.Words>
typealias SubSequence = Slice<UInt128.Words>
import Swift
@frozen struct Words
@frozen struct UInt128
A 128-bit unsigned integer type.
@frozen struct Slice<Base> where Base : Collection
A view into a subsequence of elements of another collection.
var count: Int { get }
var endIndex: Int { get }
var indices: UInt128.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 Element = UInt
typealias Index = Int
typealias Indices = Range<Int>