I want to combine two Maps. I can use the Map.addAll method, but this method does not support deep merging. I want to use addAll for all Maps and the equivivalent method for lists inside. A recursive solution is not an easy task for me, and using JS iterop is dirty. Any solution?
source
share