Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for fromEntries (0.05 seconds)

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

          if (!kvMap.isPartialView()) {
            return kvMap;
          }
        }
        return fromEntries(comparator, sameComparator, map.entrySet());
      }
    
      private static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> fromEntries(
          Entry<K, V>... entries) {
        return fromEntries(Ordering.natural(), false, entries, entries.length);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 52.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          if (!kvMap.isPartialView()) {
            return kvMap;
          }
        }
        return fromEntries(comparator, sameComparator, map.entrySet());
      }
    
      private static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> fromEntries(
          Entry<K, V>... entries) {
        return fromEntries(Ordering.natural(), false, entries, entries.length);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
Back to Top