We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1692ec0 + 5359c13 commit c7095e0Copy full SHA for c7095e0
stdlib/public/Cxx/CxxRandomAccessCollection.swift
@@ -31,6 +31,9 @@ extension UnsafeMutablePointer: UnsafeCxxRandomAccessIterator {}
31
public protocol CxxRandomAccessCollection: CxxSequence, RandomAccessCollection {
32
override associatedtype RawIterator: UnsafeCxxRandomAccessIterator
33
override associatedtype Element = RawIterator.Pointee
34
+ override associatedtype Index = Int
35
+ override associatedtype Indices = Range<Int>
36
+ override associatedtype SubSequence = Slice<Self>
37
38
/// Do not implement this function manually in Swift.
39
func __beginUnsafe() -> RawIterator
0 commit comments