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