Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for mapFromKeys (0.04 seconds)

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

  1. guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java

          compareTo = 0;
        }
      }
    
      @FunctionalInterface
      interface Construction<T> {
        @CanIgnoreReturnValue
        T create(List<?> keys);
    
        static Construction<Map<Object, Object>> mapFromKeys(
            Supplier<Map<Object, Object>> mutableSupplier) {
          return keys -> {
            Map<Object, Object> map = mutableSupplier.get();
            for (Object key : keys) {
              map.put(key, new Object());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top