Dictionary
extension Dictionary
extension Dictionary where Key == String, Value == String?
-
Returns the combination with the
otherdictionary.If a key exists in both, the value in
otherwins and is used./Declaration
Swift
public func combine(_ other: Dictionary) -> DictionaryParameters
otherAnother dictionary with the same type which should merged into a new one
Return Value
New dictionary holding the merge result of
selfandother
-
Returns a new dictionary whithout
nilvalues.Declaration
Swift
public var trimmingNullValues: [String : String] { get }
View on GitHub