Dictionary
struct Dictionary<Key : Hashable, Value> : CollectionType, DictionaryLiteralConvertible
                - 
                  
                  
Merges two dictionararies. Values are updated or added to the dictionary on the left.
Parameter
Parameter dictionary: The dictionary to merge. with
selfReturns
Dictionary
Declaration
Swift
public mutating func merge<K, V>(dictionary: [K: V])Parameters
dictionaryThe dictionary to merge. with
selfReturn Value
Dictionary
 - 
                  
                  
Recursively changes all
Stringdictionary keys fromsnake_casetocamelCaseReturns
New DictionaryDeclaration
Swift
public func keysToCamelCase() -> DictionaryReturn Value
New Dictionary
 - 
                  
                  
Recursively removes all keys where the value is NSNull
Returns
New DictionaryDeclaration
Swift
public func removeNulls() -> DictionaryReturn Value
New Dictionary
 - 
                  
                  
Removes keys from a dictionary that are not accessible selectors in an
NSObjectsubclassReturns
DictionaryDeclaration
Swift
public mutating func filterKeys(object: NSObject) -> DictionaryReturn Value
Dictionary
 
        Dictionary Extension Reference