Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for keyOrNull (0.09 sec)

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

        }
        if (oldEntryForValue != null) {
          oldEntryForValue.prevInKeyInsertionOrder = null;
          oldEntryForValue.nextInKeyInsertionOrder = null;
        }
        rehashIfNecessary();
        return Maps.keyOrNull(oldEntryForValue);
      }
    
      private void rehashIfNecessary() {
        @Nullable BiEntry<K, V>[] oldKToV = hashTableKToV;
        if (Hashing.needsResizing(size, oldKToV.length, LOAD_FACTOR)) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top