Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ValueForKeyIterator (0.21 sec)

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

      private final class ValueForKeyIterator implements ListIterator<V> {
        @ParametricNullness final K key;
        int nextIndex;
        @Nullable Node<K, V> next;
        @Nullable Node<K, V> current;
        @Nullable Node<K, V> previous;
    
        /** Constructs a new iterator over all values for the specified key. */
        ValueForKeyIterator(@ParametricNullness K key) {
          this.key = key;
    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