TreeMap.subMap

@throws ClassCastException {@inheritDoc} @throws NullPointerException if {@code fromKey} or {@code toKey} is null and this map uses natural ordering, or its comparator does not permit null keys @throws IllegalArgumentException {@inheritDoc}

  1. NavigableMap!(K, V) subMap(K fromKey, bool fromInclusive, K toKey, bool toInclusive)
  2. SortedMap!(K, V) subMap(K fromKey, K toKey)
    class TreeMap(K, V)
    SortedMap!(K, V)
    subMap
    if (
    isOrderingComparable!K
    )

Meta