Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DistinctKeyIterator (0.07 sec)

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

          checkState(current != null);
          current.setValue(value);
        }
      }
    
      /** An {@code Iterator} over distinct keys in key head order. */
      private final class DistinctKeyIterator implements Iterator<K> {
        final Set<K> seenKeys = Sets.<K>newHashSetWithExpectedSize(keySet().size());
        @Nullable Node<K, V> next = head;
        @Nullable Node<K, V> current;
        int expectedModCount = modCount;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top