Dictionary

extension Dictionary
  • Undocumented

    Declaration

    Swift

    mutating func append<K, V>(_ dictionaries: Dictionary<K, V>...) where K : Hashable
  • toJson: A method to get the JSON String representation of the dictionary

    Declaration

    Swift

    func toJSON() -> String

    Return Value

    the JSON String representation - An Empty String if it fails

  • Undocumented

    Declaration

    Swift

    mutating func setValue(value: Any, forKeyPath keyPath: String, separator: String)
  • Undocumented

    Declaration

    Swift

    func valueForKeyPath<T>(keyPath: String, separator: String) -> T?