Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for JdkBackedImmutableMultiset (0.11 seconds)

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

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

          }
          hashCode += hash ^ count;
          entryArray[index++] = newEntry;
          hashTable[bucket] = newEntry;
          size += count;
        }
    
        return hashFloodingDetected(hashTable)
            ? JdkBackedImmutableMultiset.create(asImmutableList(entryArray))
            : new RegularImmutableMultiset<E>(
                entryArray, hashTable, Ints.saturatedCast(size), hashCode, null);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ImmutableMultiset.java

          return copyOf(contents);
        }
    
        @VisibleForTesting
        ImmutableMultiset<E> buildJdkBacked() {
          if (contents.isEmpty()) {
            return of();
          }
          return JdkBackedImmutableMultiset.create(contents.entrySet());
        }
      }
    
      static final class ElementSet<E> extends ImmutableSet.Indexed<E> {
        private final List<Entry<E>> entries;
        // TODO(cpovirk): @Weak?
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 20.6K bytes
    - Click Count (0)
Back to Top