Swift: Nested dictionary remove all matching keys










-2














I need a dictionary extension that can remove all matching keys from an arbitrary dictionary ([String: Any]).



An example use case could look like this:



Remove all keys from the given dictionary that match one of the following: ["test", "staging"]



[
"foo": [ "bar": "tralala" ]
"test": [ "foo": "bar", "staging": "hi"]
"aaa": [ "bbb": "cccc", "staging": "jjj"]
]


Intended result:



[
"foo": [ "bar": "tralala" ]
"aaa": [ "bbb": "cccc"]
]









share|improve this question























  • What would be the intended result of the above?
    – Eager Logic
    Nov 11 '18 at 21:03










  • I've added a better example.
    – Sascha Held
    Nov 11 '18 at 21:07










  • Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
    – Martin R
    Nov 11 '18 at 21:19
















-2














I need a dictionary extension that can remove all matching keys from an arbitrary dictionary ([String: Any]).



An example use case could look like this:



Remove all keys from the given dictionary that match one of the following: ["test", "staging"]



[
"foo": [ "bar": "tralala" ]
"test": [ "foo": "bar", "staging": "hi"]
"aaa": [ "bbb": "cccc", "staging": "jjj"]
]


Intended result:



[
"foo": [ "bar": "tralala" ]
"aaa": [ "bbb": "cccc"]
]









share|improve this question























  • What would be the intended result of the above?
    – Eager Logic
    Nov 11 '18 at 21:03










  • I've added a better example.
    – Sascha Held
    Nov 11 '18 at 21:07










  • Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
    – Martin R
    Nov 11 '18 at 21:19














-2












-2








-2







I need a dictionary extension that can remove all matching keys from an arbitrary dictionary ([String: Any]).



An example use case could look like this:



Remove all keys from the given dictionary that match one of the following: ["test", "staging"]



[
"foo": [ "bar": "tralala" ]
"test": [ "foo": "bar", "staging": "hi"]
"aaa": [ "bbb": "cccc", "staging": "jjj"]
]


Intended result:



[
"foo": [ "bar": "tralala" ]
"aaa": [ "bbb": "cccc"]
]









share|improve this question















I need a dictionary extension that can remove all matching keys from an arbitrary dictionary ([String: Any]).



An example use case could look like this:



Remove all keys from the given dictionary that match one of the following: ["test", "staging"]



[
"foo": [ "bar": "tralala" ]
"test": [ "foo": "bar", "staging": "hi"]
"aaa": [ "bbb": "cccc", "staging": "jjj"]
]


Intended result:



[
"foo": [ "bar": "tralala" ]
"aaa": [ "bbb": "cccc"]
]






swift dictionary nested mutate






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 '18 at 21:07

























asked Nov 11 '18 at 21:00









Sascha Held

13613




13613











  • What would be the intended result of the above?
    – Eager Logic
    Nov 11 '18 at 21:03










  • I've added a better example.
    – Sascha Held
    Nov 11 '18 at 21:07










  • Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
    – Martin R
    Nov 11 '18 at 21:19

















  • What would be the intended result of the above?
    – Eager Logic
    Nov 11 '18 at 21:03










  • I've added a better example.
    – Sascha Held
    Nov 11 '18 at 21:07










  • Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
    – Martin R
    Nov 11 '18 at 21:19
















What would be the intended result of the above?
– Eager Logic
Nov 11 '18 at 21:03




What would be the intended result of the above?
– Eager Logic
Nov 11 '18 at 21:03












I've added a better example.
– Sascha Held
Nov 11 '18 at 21:07




I've added a better example.
– Sascha Held
Nov 11 '18 at 21:07












Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
– Martin R
Nov 11 '18 at 21:19





Can you remove a single key/value pair from a dictionary? Can you iterate over the elements of an array?
– Martin R
Nov 11 '18 at 21:19













2 Answers
2






active

oldest

votes


















0














Using Any as a type for the values of a dictionary is discouraged. It would be preferable, in this case, to define your dictionary as [String : [String : String]].



If you really can't avoid using any, let's define this dictionary which has multiple levels of nested dictionaries:



let dictionary = [
"foo" : [ "bar": "tralala" ],
"test": [ "foo": "bar", "staging": "hi"],
"aaa" : [ "bbb": "cccc", "staging": "jjj"],
"d" : [ "e": "f", "g": ["h": "i", "test": "j"]],
]


And declare the keys that we'd like to remove:



let badKeys = ["test", "staging"]


Here is a recursive function that removes the unwanted keys:



func remove(_ keys: [String], from dict: [String: Any]) -> [String: Any] 
var filtered = dict.filter !keys.contains($0.key)
for entry in filtered
if let value = entry.value as? [String : String]
filtered[entry.key] = remove(badKeys, from: value)


return filtered



And you could use it like so:



let result = remove(badKeys, from: dictionary)


Which yields:




["aaa": ["bbb": "cccc"], "foo": ["bar": "tralala"], "d": ["e": "f", "g": ["h": "i"]]]




(Bear in mind that a dictionary is an unordered collection, so the the results may differ in order)






share|improve this answer






















  • If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
    – CRD
    Nov 12 '18 at 5:58


















-1














It is not clear what you tried and where you got stuck, you really should include this – not doing so will be why you've been down voted.



However, let's see if we can help. You state your dictionary is of type [String:Any] and do not give any nesting limit, so we'll use the following test data:



let sampleDict : [String:Any] =
[
"foo": [ "bar": "tralala" ],
"test": [ "foo": "bar", "staging": "hi"],
"staging" : 3,
"one" : [ "two" : [ "three" : 3, "staging" : 4.2]],
"aaa": [ "bbb": "cccc", "staging": "jjj"]
]


If our algorithm copes with that it should cope with anything (famous last words...).



A straightforward algorithm using pre-defined methods and avoiding loops:



  1. Filter the dictionary removing any key/value pairs where the key needs to be deleted.

  2. Map the values in the filtered dictionary, for any value which is itself a [String:Any] dictionary recursively apply this algorithm to the value.

In Swift:



func removeMatchingKeys(_ dict : [String:Any], _ keysToRemove : [String]) -> [String:Any]

return dict
// filter keeping only those key/value pairs
// where the key isn't in keysToRemove
.filter !keysToRemove.contains($0.key)
// map the values in the filtered dictionary recursing
// if the value is itself a [String:Any] dictionary
.mapValues
if let nested = $0 as? [String:Any]
// value is dictionary, recurse
return removeMatchingKeys(nested, keysToRemove)
else
// value isn't a dictionary, leave as is
return $0




Testing this with the keys:



let sampleKeys = ["test", "staging"]


The statement:



print( removeMatchingKeys(sampleDict, sampleKeys) )


Produces:



["foo": ["bar": "tralala"], "aaa": ["bbb": "cccc"], "one": ["two": ["three": 3.0]]]


The above algorithm makes two passes over the data, first to filter it and then to map it. If, and only if, this turns out to be a performance issue you can replace the two pre-defined functions filter and map with a simple handwritten loop which combines the operations and only passes over the data once.



Note: Above uses Xcode 10/Swift 4.2, use any other version and YMMV (i.e. syntax & pre-defined functions could easily be different) but the algorithm is still applicable.






share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253189%2fswift-nested-dictionary-remove-all-matching-keys%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Using Any as a type for the values of a dictionary is discouraged. It would be preferable, in this case, to define your dictionary as [String : [String : String]].



    If you really can't avoid using any, let's define this dictionary which has multiple levels of nested dictionaries:



    let dictionary = [
    "foo" : [ "bar": "tralala" ],
    "test": [ "foo": "bar", "staging": "hi"],
    "aaa" : [ "bbb": "cccc", "staging": "jjj"],
    "d" : [ "e": "f", "g": ["h": "i", "test": "j"]],
    ]


    And declare the keys that we'd like to remove:



    let badKeys = ["test", "staging"]


    Here is a recursive function that removes the unwanted keys:



    func remove(_ keys: [String], from dict: [String: Any]) -> [String: Any] 
    var filtered = dict.filter !keys.contains($0.key)
    for entry in filtered
    if let value = entry.value as? [String : String]
    filtered[entry.key] = remove(badKeys, from: value)


    return filtered



    And you could use it like so:



    let result = remove(badKeys, from: dictionary)


    Which yields:




    ["aaa": ["bbb": "cccc"], "foo": ["bar": "tralala"], "d": ["e": "f", "g": ["h": "i"]]]




    (Bear in mind that a dictionary is an unordered collection, so the the results may differ in order)






    share|improve this answer






















    • If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
      – CRD
      Nov 12 '18 at 5:58















    0














    Using Any as a type for the values of a dictionary is discouraged. It would be preferable, in this case, to define your dictionary as [String : [String : String]].



    If you really can't avoid using any, let's define this dictionary which has multiple levels of nested dictionaries:



    let dictionary = [
    "foo" : [ "bar": "tralala" ],
    "test": [ "foo": "bar", "staging": "hi"],
    "aaa" : [ "bbb": "cccc", "staging": "jjj"],
    "d" : [ "e": "f", "g": ["h": "i", "test": "j"]],
    ]


    And declare the keys that we'd like to remove:



    let badKeys = ["test", "staging"]


    Here is a recursive function that removes the unwanted keys:



    func remove(_ keys: [String], from dict: [String: Any]) -> [String: Any] 
    var filtered = dict.filter !keys.contains($0.key)
    for entry in filtered
    if let value = entry.value as? [String : String]
    filtered[entry.key] = remove(badKeys, from: value)


    return filtered



    And you could use it like so:



    let result = remove(badKeys, from: dictionary)


    Which yields:




    ["aaa": ["bbb": "cccc"], "foo": ["bar": "tralala"], "d": ["e": "f", "g": ["h": "i"]]]




    (Bear in mind that a dictionary is an unordered collection, so the the results may differ in order)






    share|improve this answer






















    • If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
      – CRD
      Nov 12 '18 at 5:58













    0












    0








    0






    Using Any as a type for the values of a dictionary is discouraged. It would be preferable, in this case, to define your dictionary as [String : [String : String]].



    If you really can't avoid using any, let's define this dictionary which has multiple levels of nested dictionaries:



    let dictionary = [
    "foo" : [ "bar": "tralala" ],
    "test": [ "foo": "bar", "staging": "hi"],
    "aaa" : [ "bbb": "cccc", "staging": "jjj"],
    "d" : [ "e": "f", "g": ["h": "i", "test": "j"]],
    ]


    And declare the keys that we'd like to remove:



    let badKeys = ["test", "staging"]


    Here is a recursive function that removes the unwanted keys:



    func remove(_ keys: [String], from dict: [String: Any]) -> [String: Any] 
    var filtered = dict.filter !keys.contains($0.key)
    for entry in filtered
    if let value = entry.value as? [String : String]
    filtered[entry.key] = remove(badKeys, from: value)


    return filtered



    And you could use it like so:



    let result = remove(badKeys, from: dictionary)


    Which yields:




    ["aaa": ["bbb": "cccc"], "foo": ["bar": "tralala"], "d": ["e": "f", "g": ["h": "i"]]]




    (Bear in mind that a dictionary is an unordered collection, so the the results may differ in order)






    share|improve this answer














    Using Any as a type for the values of a dictionary is discouraged. It would be preferable, in this case, to define your dictionary as [String : [String : String]].



    If you really can't avoid using any, let's define this dictionary which has multiple levels of nested dictionaries:



    let dictionary = [
    "foo" : [ "bar": "tralala" ],
    "test": [ "foo": "bar", "staging": "hi"],
    "aaa" : [ "bbb": "cccc", "staging": "jjj"],
    "d" : [ "e": "f", "g": ["h": "i", "test": "j"]],
    ]


    And declare the keys that we'd like to remove:



    let badKeys = ["test", "staging"]


    Here is a recursive function that removes the unwanted keys:



    func remove(_ keys: [String], from dict: [String: Any]) -> [String: Any] 
    var filtered = dict.filter !keys.contains($0.key)
    for entry in filtered
    if let value = entry.value as? [String : String]
    filtered[entry.key] = remove(badKeys, from: value)


    return filtered



    And you could use it like so:



    let result = remove(badKeys, from: dictionary)


    Which yields:




    ["aaa": ["bbb": "cccc"], "foo": ["bar": "tralala"], "d": ["e": "f", "g": ["h": "i"]]]




    (Bear in mind that a dictionary is an unordered collection, so the the results may differ in order)







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 11 '18 at 23:48

























    answered Nov 11 '18 at 23:30









    Carpsen90

    7,20462558




    7,20462558











    • If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
      – CRD
      Nov 12 '18 at 5:58
















    • If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
      – CRD
      Nov 12 '18 at 5:58















    If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
    – CRD
    Nov 12 '18 at 5:58




    If you are going to use a loop rather than a map (which is a valid choice) why retain the two passes rather than do the key removal in the same loop (see my earlier answer)?
    – CRD
    Nov 12 '18 at 5:58













    -1














    It is not clear what you tried and where you got stuck, you really should include this – not doing so will be why you've been down voted.



    However, let's see if we can help. You state your dictionary is of type [String:Any] and do not give any nesting limit, so we'll use the following test data:



    let sampleDict : [String:Any] =
    [
    "foo": [ "bar": "tralala" ],
    "test": [ "foo": "bar", "staging": "hi"],
    "staging" : 3,
    "one" : [ "two" : [ "three" : 3, "staging" : 4.2]],
    "aaa": [ "bbb": "cccc", "staging": "jjj"]
    ]


    If our algorithm copes with that it should cope with anything (famous last words...).



    A straightforward algorithm using pre-defined methods and avoiding loops:



    1. Filter the dictionary removing any key/value pairs where the key needs to be deleted.

    2. Map the values in the filtered dictionary, for any value which is itself a [String:Any] dictionary recursively apply this algorithm to the value.

    In Swift:



    func removeMatchingKeys(_ dict : [String:Any], _ keysToRemove : [String]) -> [String:Any]

    return dict
    // filter keeping only those key/value pairs
    // where the key isn't in keysToRemove
    .filter !keysToRemove.contains($0.key)
    // map the values in the filtered dictionary recursing
    // if the value is itself a [String:Any] dictionary
    .mapValues
    if let nested = $0 as? [String:Any]
    // value is dictionary, recurse
    return removeMatchingKeys(nested, keysToRemove)
    else
    // value isn't a dictionary, leave as is
    return $0




    Testing this with the keys:



    let sampleKeys = ["test", "staging"]


    The statement:



    print( removeMatchingKeys(sampleDict, sampleKeys) )


    Produces:



    ["foo": ["bar": "tralala"], "aaa": ["bbb": "cccc"], "one": ["two": ["three": 3.0]]]


    The above algorithm makes two passes over the data, first to filter it and then to map it. If, and only if, this turns out to be a performance issue you can replace the two pre-defined functions filter and map with a simple handwritten loop which combines the operations and only passes over the data once.



    Note: Above uses Xcode 10/Swift 4.2, use any other version and YMMV (i.e. syntax & pre-defined functions could easily be different) but the algorithm is still applicable.






    share|improve this answer

























      -1














      It is not clear what you tried and where you got stuck, you really should include this – not doing so will be why you've been down voted.



      However, let's see if we can help. You state your dictionary is of type [String:Any] and do not give any nesting limit, so we'll use the following test data:



      let sampleDict : [String:Any] =
      [
      "foo": [ "bar": "tralala" ],
      "test": [ "foo": "bar", "staging": "hi"],
      "staging" : 3,
      "one" : [ "two" : [ "three" : 3, "staging" : 4.2]],
      "aaa": [ "bbb": "cccc", "staging": "jjj"]
      ]


      If our algorithm copes with that it should cope with anything (famous last words...).



      A straightforward algorithm using pre-defined methods and avoiding loops:



      1. Filter the dictionary removing any key/value pairs where the key needs to be deleted.

      2. Map the values in the filtered dictionary, for any value which is itself a [String:Any] dictionary recursively apply this algorithm to the value.

      In Swift:



      func removeMatchingKeys(_ dict : [String:Any], _ keysToRemove : [String]) -> [String:Any]

      return dict
      // filter keeping only those key/value pairs
      // where the key isn't in keysToRemove
      .filter !keysToRemove.contains($0.key)
      // map the values in the filtered dictionary recursing
      // if the value is itself a [String:Any] dictionary
      .mapValues
      if let nested = $0 as? [String:Any]
      // value is dictionary, recurse
      return removeMatchingKeys(nested, keysToRemove)
      else
      // value isn't a dictionary, leave as is
      return $0




      Testing this with the keys:



      let sampleKeys = ["test", "staging"]


      The statement:



      print( removeMatchingKeys(sampleDict, sampleKeys) )


      Produces:



      ["foo": ["bar": "tralala"], "aaa": ["bbb": "cccc"], "one": ["two": ["three": 3.0]]]


      The above algorithm makes two passes over the data, first to filter it and then to map it. If, and only if, this turns out to be a performance issue you can replace the two pre-defined functions filter and map with a simple handwritten loop which combines the operations and only passes over the data once.



      Note: Above uses Xcode 10/Swift 4.2, use any other version and YMMV (i.e. syntax & pre-defined functions could easily be different) but the algorithm is still applicable.






      share|improve this answer























        -1












        -1








        -1






        It is not clear what you tried and where you got stuck, you really should include this – not doing so will be why you've been down voted.



        However, let's see if we can help. You state your dictionary is of type [String:Any] and do not give any nesting limit, so we'll use the following test data:



        let sampleDict : [String:Any] =
        [
        "foo": [ "bar": "tralala" ],
        "test": [ "foo": "bar", "staging": "hi"],
        "staging" : 3,
        "one" : [ "two" : [ "three" : 3, "staging" : 4.2]],
        "aaa": [ "bbb": "cccc", "staging": "jjj"]
        ]


        If our algorithm copes with that it should cope with anything (famous last words...).



        A straightforward algorithm using pre-defined methods and avoiding loops:



        1. Filter the dictionary removing any key/value pairs where the key needs to be deleted.

        2. Map the values in the filtered dictionary, for any value which is itself a [String:Any] dictionary recursively apply this algorithm to the value.

        In Swift:



        func removeMatchingKeys(_ dict : [String:Any], _ keysToRemove : [String]) -> [String:Any]

        return dict
        // filter keeping only those key/value pairs
        // where the key isn't in keysToRemove
        .filter !keysToRemove.contains($0.key)
        // map the values in the filtered dictionary recursing
        // if the value is itself a [String:Any] dictionary
        .mapValues
        if let nested = $0 as? [String:Any]
        // value is dictionary, recurse
        return removeMatchingKeys(nested, keysToRemove)
        else
        // value isn't a dictionary, leave as is
        return $0




        Testing this with the keys:



        let sampleKeys = ["test", "staging"]


        The statement:



        print( removeMatchingKeys(sampleDict, sampleKeys) )


        Produces:



        ["foo": ["bar": "tralala"], "aaa": ["bbb": "cccc"], "one": ["two": ["three": 3.0]]]


        The above algorithm makes two passes over the data, first to filter it and then to map it. If, and only if, this turns out to be a performance issue you can replace the two pre-defined functions filter and map with a simple handwritten loop which combines the operations and only passes over the data once.



        Note: Above uses Xcode 10/Swift 4.2, use any other version and YMMV (i.e. syntax & pre-defined functions could easily be different) but the algorithm is still applicable.






        share|improve this answer












        It is not clear what you tried and where you got stuck, you really should include this – not doing so will be why you've been down voted.



        However, let's see if we can help. You state your dictionary is of type [String:Any] and do not give any nesting limit, so we'll use the following test data:



        let sampleDict : [String:Any] =
        [
        "foo": [ "bar": "tralala" ],
        "test": [ "foo": "bar", "staging": "hi"],
        "staging" : 3,
        "one" : [ "two" : [ "three" : 3, "staging" : 4.2]],
        "aaa": [ "bbb": "cccc", "staging": "jjj"]
        ]


        If our algorithm copes with that it should cope with anything (famous last words...).



        A straightforward algorithm using pre-defined methods and avoiding loops:



        1. Filter the dictionary removing any key/value pairs where the key needs to be deleted.

        2. Map the values in the filtered dictionary, for any value which is itself a [String:Any] dictionary recursively apply this algorithm to the value.

        In Swift:



        func removeMatchingKeys(_ dict : [String:Any], _ keysToRemove : [String]) -> [String:Any]

        return dict
        // filter keeping only those key/value pairs
        // where the key isn't in keysToRemove
        .filter !keysToRemove.contains($0.key)
        // map the values in the filtered dictionary recursing
        // if the value is itself a [String:Any] dictionary
        .mapValues
        if let nested = $0 as? [String:Any]
        // value is dictionary, recurse
        return removeMatchingKeys(nested, keysToRemove)
        else
        // value isn't a dictionary, leave as is
        return $0




        Testing this with the keys:



        let sampleKeys = ["test", "staging"]


        The statement:



        print( removeMatchingKeys(sampleDict, sampleKeys) )


        Produces:



        ["foo": ["bar": "tralala"], "aaa": ["bbb": "cccc"], "one": ["two": ["three": 3.0]]]


        The above algorithm makes two passes over the data, first to filter it and then to map it. If, and only if, this turns out to be a performance issue you can replace the two pre-defined functions filter and map with a simple handwritten loop which combines the operations and only passes over the data once.



        Note: Above uses Xcode 10/Swift 4.2, use any other version and YMMV (i.e. syntax & pre-defined functions could easily be different) but the algorithm is still applicable.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 11 '18 at 23:29









        CRD

        44.7k44770




        44.7k44770



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253189%2fswift-nested-dictionary-remove-all-matching-keys%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kleinkühnau

            Makov (Slowakei)

            Deutsches Schauspielhaus