I have a let map : [String: String] and a let key: String?.
let map : [String: String]
let key: String?
What is the most concise way to access map[key] (and get back a
map[key]
I think I am going with the decidedly unfancy
key == nil ? nil : map[key!]