Kamus Swift Dapatkan Kunci dari Valye

let dict: [Int: String] = [1: "one", 2: "two", 4: "four"]

if let key = dict.someKey(forValue: "two") { 
    print(key)
} // 2
Determined Dragonfly