Hi folks. I have a map and want to transform
it to a nested map by applying a function to the key. A contrived example would be {"ab" 5, "az" 10}
would become {"a" {"b" 5, "z 10}
. I don't see a way to do this with transform
—am I missing something?
@daveliepmann that's a restructure of the entire data structure, so specter won't be better than just doing it without
specter lets you target a precise part of a data structure and only change that part, which isn't the case here
I had that suspicion, but it helps to hear it from the source. Thanks! 🙂