if my structure is
{ :a :A
:b :B
:c {
:d :D
}
:e {
:f {
:g :G
:h :H
}
}
}
I would like to get a function called keys-in
that returns something like:
[[:a] [:b] [:c :d] [:e :f :g] [:e :f :h]]
so then I can do something like:
(not-any? nil? (map #(get-in my-other-map %1) (keys-in my-map)))
So I can be sure that my-other-map
has the same keys that my-map
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…