Dictionary
@frozen
struct Dictionary<Key, Value> where Key : Hashable
-
Undocumented
Declaration
Swift
var arrayValues: [Value] { get }
-
Declaration
Swift
public func combine(_ other: Dictionary<Key, Value>) -> Dictionary<Key, Value>
-
Declaration
Swift
public static func empty() -> Dictionary<Key, Value>
-
Creates a
DictionaryK
.Declaration
Swift
func k() -> DictionaryK<Key, Value>
Return Value
A
DictionaryK
wrapping this Swift dictionary.