Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 41 of 41 for entryIterator (0.3 sec)

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

          public ListIterator<Entry<K, V>> listIterator(int index) {
            return new NodeIterator(index);
          }
        }
        return new EntriesImpl();
      }
    
      @Override
      Iterator<Entry<K, V>> entryIterator() {
        throw new AssertionError("should never be called");
      }
    
      @Override
      Map<K, Collection<V>> createAsMap() {
        return new Multimaps.AsMap<>(this);
      }
    
      /**
    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