Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newView (0.03 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

          }
        }
        return tailMap(fromKey);
      }
    
      private ImmutableSortedMap<K, V> newView(SortedMap<K, V> delegate) {
        return newView(delegate, comparator);
      }
    
      private static <K, V> ImmutableSortedMap<K, V> newView(
          SortedMap<K, V> delegate, Comparator<? super K> comparator) {
        return new ImmutableSortedMap<K, V>(delegate, comparator);
      }
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 16.1K bytes
    - Viewed (0)
Back to top