Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for moveEntryToIndex (0.51 seconds)

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

        deleteFromTableVToK(entry, valueHash);
    
        int oldPredecessor = prevInInsertionOrder[entry];
        int oldSuccessor = nextInInsertionOrder[entry];
        setSucceeds(oldPredecessor, oldSuccessor);
    
        moveEntryToIndex(size - 1, entry);
        keys[size - 1] = null;
        values[size - 1] = null;
        size--;
        modCount++;
      }
    
      /** Removes the entry at the specified index, given the hash of its key. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 37K bytes
    - Click Count (0)
Back to Top