Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for insertIntoHashBucketsOnly (0.18 seconds)

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

        node.nextInKToVBucket = null;
        node.nextInVToKBucket = null;
    
        size--;
        modCount++;
      }
    
      private void insertPlacingAtEndOfIterationOrder(Node<K, V> node) {
        insertIntoHashBucketsOnly(node);
    
        node.prevInKeyInsertionOrder = lastInKeyInsertionOrder;
        if (lastInKeyInsertionOrder == null) {
          firstInKeyInsertionOrder = node;
        } else {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 25.7K bytes
    - Click Count (0)
Back to Top