Dictionary
public extension Dictionary
-
Declaration
Swift
subscript(key: Key, or def: Value) -> Value { mutating get set }
Parameters
key
Key to retrieve from self.
or
Value that will be set for
key
ifself[key]
is nil.Return Value
Value for
key
oror
ifkey
is not set.