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.
1 parent ee90fe3 commit a65f1b8Copy full SHA for a65f1b8
Source/Dictionary.Java.swift
@@ -73,7 +73,7 @@ public extension Swift.Dictionary : java.util.Map<Key,Value> {
73
makeUnique()
74
return dictionary.replace(arg1, arg2, arg3)
75
}
76
- public func computeIfAbsent(_ arg1: Key!, _ arg2: java.util.function.function</*? super Key,? extends Value*/Key,Value>!) -> Value! {
+ public func computeIfAbsent(_ arg1: Key!, _ arg2: java.util.function.Function</*? super Key,? extends Value*/Key,Value>!) -> Value! {
77
return dictionary.computeIfAbsent(arg1, arg2)
78
79
public func computeIfPresent(_ arg1: Key!, _ arg2: java.util.function.BiFunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {
0 commit comments