Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for actualUnique (0.16 seconds)

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

          return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask, uniques);
        }
      }
    
      private static boolean shouldTrim(int actualUnique, int expectedUnique) {
        return actualUnique < (expectedUnique >> 1) + (expectedUnique >> 2);
      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Oct 11 14:54:00 GMT 2025
    - 22.4K bytes
    - Click Count (0)
Back to Top