// fromKey = inclusive, toKey = exclusive static SortedMap subMap(SortedMap map, A fromKey, A toKey) { ret map == null ? null : map.subMap(fromKey, toKey); }