DepthNSDictionary

master

Extension to navigate a nested dictionary using separator to search nested keys in a recursive implementation
20tab/DepthNSDictionary

DepthNSDictionary

Extension to navigate a nested dictionary using separator to search nested keys in a recursive implementation

Usage

let nested_dict: NSDictionary = ["a": 1, "b": ["c": 2, "d": 3], "e": 5]

let param_a = nested_dict.dfs(forKey: "a") as! Int
let param_d = nested_dict.dfs(forKey: "b__d") as! Int
let isNil = nested_dict.dfs(forKey: "dog__cat") // it's nil

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 10 2024 01:23:27 GMT-1000 (Hawaii-Aleutian Standard Time)