Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nextInBucket (0.04 sec)

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

      }
    
      private int findEntry(
          @Nullable Object o,
          int oHash,
          int[] hashTable,
          int[] nextInBucket,
          @Nullable Object[] array) {
        for (int entry = hashTable[bucket(oHash)]; entry != ABSENT; entry = nextInBucket[entry]) {
          if (Objects.equals(array[entry], o)) {
            return entry;
          }
        }
        return ABSENT;
      }
    
      @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:46:34 UTC 2025
    - 37.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multisets.java

        public final E getElement() {
          return element;
        }
    
        @Override
        public final int getCount() {
          return count;
        }
    
        public @Nullable ImmutableEntry<E> nextInBucket() {
          return null;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multisets.java

        public final E getElement() {
          return element;
        }
    
        @Override
        public final int getCount() {
          return count;
        }
    
        public @Nullable ImmutableEntry<E> nextInBucket() {
          return null;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.3K bytes
    - Viewed (0)
Back to top