You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Surprisingly, I never had to deal with TreeMap in practice. TreeMap is nasty due to few subclasses you have to deal with, but otherwise it is not hard to support.
I'll try to find some time to address it.
If you feel like contributing, though, you are welcome.
@alexey-ragozin
In my case, its used a lot for sorted collections all over the place.
I have to read up on the heappath way of iterating Map's but I currently have this hack
`private static Set getTreeMapEntries(Instance treeInstance) {
Set mapEntries = new HashSet(0);
Currently to walk HashMap instances we use the "?entrySet" path step.
Is there one under works for TreeMap instances?
Thanks in advance!
The text was updated successfully, but these errors were encountered: