Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for nextIndexAfterRemove (0.06 seconds)

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

        return table.length - 1;
      }
    
      int firstIndex() {
        return (size == 0) ? -1 : 0;
      }
    
      int nextIndex(int index) {
        return (index + 1 < size) ? index + 1 : -1;
      }
    
      int nextIndexAfterRemove(int oldNextIndex, @SuppressWarnings("unused") int removedIndex) {
        return oldNextIndex - 1;
      }
    
      int size() {
        return size;
      }
    
      @SuppressWarnings("unchecked")
      @ParametricNullness
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 14.5K bytes
    - Click Count (0)
Back to Top