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 1

    Parameter

    Parameter right: Dictionary 2

    Returns

    Dictionary
    See more

    Declaration

    Swift

    public func += <KeyType, ValueType> (inout left: Dictionary<KeyType, ValueType>, right: Dictionary<KeyType, ValueType>)

    Parameters

    left

    Dictionary 1

    right

    Dictionary 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