Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyOfSorted (0.1 sec)

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

       * undocumented and subject to change.
       *
       * @throws NullPointerException if any key or value in {@code map} is null
       */
      @SuppressWarnings("unchecked")
      public static <K, V> ImmutableSortedMap<K, V> copyOfSorted(SortedMap<K, ? extends V> map) {
        Comparator<? super K> comparator = map.comparator();
        if (comparator == null) {
          // If map has a null comparator, the keys should have a natural ordering,
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 52.9K bytes
    - Viewed (0)
Back to top