Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NonTerminalEntry (0.09 seconds)

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

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

          if (bucketHead == null) {
            boolean canReuseEntry =
                entry instanceof ImmutableEntry && !(entry instanceof NonTerminalEntry);
            newEntry =
                canReuseEntry ? (ImmutableEntry<E>) entry : new ImmutableEntry<E>(element, count);
          } else {
            newEntry = new NonTerminalEntry<>(element, count, bucketHead);
          }
          hashCode += hash ^ count;
          entryArray[index++] = newEntry;
    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)
Back to Top