Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for actualUnique (0.2 sec)

  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;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top