Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newEntryArray (0.21 sec)

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

                continue; // delete this duplicate
              }
              entry = new ImmutableMapEntry<>(key, value);
              duplicates.put(key, null);
            }
            newEntryArray[outI++] = entry;
          }
          entryArray = newEntryArray;
        }
        return new JdkBackedImmutableMap<>(delegateMap, ImmutableList.asImmutableList(entryArray, n));
      }
    
      private final transient Map<K, V> delegateMap;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top