Functions
The following functions are available globally.
-
Merge two dictionaries. Values are updated or added to the dictionary on the left.
Parameter
Parameter left: Dictionary 1Parameter
Parameter right: Dictionary 2See moreReturns
DictionaryDeclaration
Swift
public func += <KeyType, ValueType> (inout left: Dictionary<KeyType, ValueType>, right: Dictionary<KeyType, ValueType>)Parameters
leftDictionary 1
rightDictionary 2
Return Value
Dictionary
-
NSDate less than comparison
Declaration
Swift
public func <(a: NSDate, b: NSDate) -> Bool -
NSDate equal than comparison
Declaration
Swift
public func ==(a: NSDate, b: NSDate) -> Bool
Functions Reference