Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TreeSetSupplier (0.04 sec)

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

          return Platform.newLinkedHashSetWithExpectedSize(expectedValuesPerKey);
        }
      }
    
      private static final class TreeSetSupplier<V extends @Nullable Object>
          implements Supplier<SortedSet<V>>, Serializable {
        private final Comparator<? super V> comparator;
    
        TreeSetSupplier(Comparator<? super V> comparator) {
          this.comparator = checkNotNull(comparator);
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top