Skip to content

Instantly share code, notes, and snippets.

@hironytic
Created August 23, 2017 05:53
Show Gist options
  • Select an option

  • Save hironytic/02caa6d96bffb4c6473f2a642617047d to your computer and use it in GitHub Desktop.

Select an option

Save hironytic/02caa6d96bffb4c6473f2a642617047d to your computer and use it in GitHub Desktop.
dict.swift
var d = [String: String?]()
var s: String? = nil
d["key"] = s // nil入る
print(d)
d["key"] = nil // 削除
print(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment