Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Itr (0.01 sec)

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

       */
      int adjustAfterRemove(int indexBeforeRemove, @SuppressWarnings("unused") int indexRemoved) {
        return indexBeforeRemove - 1;
      }
    
      private abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        int expectedMetadata = metadata;
        int currentIndex = firstEntryIndex();
        int indexToRemove = -1;
    
        @Override
        public boolean hasNext() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          collection.clear();
          totalSize -= count;
        }
      }
    
      private abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        final Iterator<Entry<K, Collection<V>>> keyIterator;
        @Nullable K key;
        @Nullable Collection<V> collection;
        Iterator<V> valueIterator;
    
        Itr() {
          keyIterator = map.entrySet().iterator();
          key = null;
          collection = null;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  3. okhttp/src/androidMain/baseline-prof.txt

    HSPLkotlin/collections/SetsKt__SetsKt;->optimizeReadOnlyList(Ljava/util/List;)Ljava/util/List;
    HSPLkotlin/collections/builders/ListBuilder$Itr;-><init>(Lkotlin/collections/builders/ListBuilder;I)V
    HSPLkotlin/collections/builders/ListBuilder$Itr;->hasNext()Z
    HSPLkotlin/collections/builders/ListBuilder$Itr;->next()Ljava/lang/Object;
    HSPLkotlin/collections/builders/ListBuilder;-><init>()V
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 127.9K bytes
    - Viewed (0)
Back to top