File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ public protocol CxxDictionary where Key: Hashable {
23
23
/// Do not implement this function manually in Swift.
24
24
func __findUnsafe( _ key: Key ) -> RawIterator
25
25
26
+ /// Do not implement this function manually in Swift.
27
+ func __beginUnsafe( ) -> RawIterator
28
+
26
29
/// Do not implement this function manually in Swift.
27
30
func __endUnsafe( ) -> RawIterator
28
31
}
@@ -43,7 +46,7 @@ extension CxxDictionary {
43
46
_ isIncluded: ( _ key: Key , _ value: Value ) throws -> Bool
44
47
) rethrows -> [ Key : Value ] {
45
48
var filteredDictionary : [ Key : Value ] = [ : ]
46
- var iterator = __findUnsafe ( Key)
49
+ var iterator = __beginUnsafe ( Key)
47
50
let endIterator = __endUnsafe ( )
48
51
49
52
while iterator != endIterator {
You can’t perform that action at this time.
0 commit comments