Created
August 23, 2017 05:53
-
-
Save hironytic/02caa6d96bffb4c6473f2a642617047d to your computer and use it in GitHub Desktop.
dict.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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