Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  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);
      }
    
      /*
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 16.1K bytes
    - Click Count (0)
Back to Top