Optimize: O(1) index lookup of map elements in a list
There was a big performance bottleneck with MapElementList, whereindexOf() was being used to look up indices in O(n) time.
View differences
Optimize: O(1) index lookup of map elements in a list
There was a big performance bottleneck with MapElementList, where
indexOf() was being used to look up indices in O(n) time.