parm530
4/24/2020 - 3:18 PM

Lesson 7: Dictionaries

Dictionaries

  • Similar to hash structures
  • keys returned from dictionaries are returned as optionals
    • Will need to unwrap (!)
let eggTimes = [
  "Soft": 5,
  "Medium": 7,
  "Hard": 12
]

print(eggTimes["Soft"])

// Dictionary of different types
var dic : [String : Int] = ["Parm": 1, "Kish": 2]