Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for headIndex (0.16 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * the original {@code toKey}.
       *
       * @since 12.0
       */
      @Override
      public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) {
        return getSubMap(0, keySet.headIndex(checkNotNull(toKey), inclusive));
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys ranges
       * from {@code fromKey}, inclusive, to {@code toKey}, exclusive.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top