Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for asMapEntryIterator (0.21 sec)

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

        }
    
        @WeakOuter
        private final class EntrySet extends TableSet<Entry<R, Map<C, V>>> {
          @Override
          public Iterator<Entry<R, Map<C, V>>> iterator() {
            return Maps.asMapEntryIterator(
                backingMap.keySet(),
                new Function<R, Map<C, V>>() {
                  @Override
                  public Map<C, V> apply(R rowKey) {
                    return row(rowKey);
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

        }
    
        @WeakOuter
        private final class EntrySet extends TableSet<Entry<R, Map<C, V>>> {
          @Override
          public Iterator<Entry<R, Map<C, V>>> iterator() {
            return Maps.asMapEntryIterator(
                backingMap.keySet(),
                new Function<R, Map<C, V>>() {
                  @Override
                  public Map<C, V> apply(R rowKey) {
                    return row(rowKey);
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

            }
    
            @Override
            public Iterator<Entry<K, V>> iterator() {
              return asMapEntryIterator(backingSet(), function);
            }
          }
          return new EntrySetImpl();
        }
      }
    
      static <K extends @Nullable Object, V extends @Nullable Object>
          Iterator<Entry<K, V>> asMapEntryIterator(Set<K> set, final Function<? super K, V> function) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

            @Override
            Map<K, V> map() {
              return AsMapView.this;
            }
    
            @Override
            public Iterator<Entry<K, V>> iterator() {
              return asMapEntryIterator(backingSet(), function);
            }
          }
          return new EntrySetImpl();
        }
    
        @Override
        public void forEach(BiConsumer<? super K, ? super V> action) {
          checkNotNull(action);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

          @Override
          Map<K, Collection<V>> map() {
            return AsMap.this;
          }
    
          @Override
          public Iterator<Entry<K, Collection<V>>> iterator() {
            return Maps.asMapEntryIterator(multimap.keySet(), key -> multimap.get(key));
          }
    
          @Override
          public boolean remove(@CheckForNull Object o) {
            if (!contains(o)) {
              return false;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multimaps.java

          @Override
          Map<K, Collection<V>> map() {
            return AsMap.this;
          }
    
          @Override
          public Iterator<Entry<K, Collection<V>>> iterator() {
            return Maps.asMapEntryIterator(multimap.keySet(), key -> multimap.get(key));
          }
    
          @Override
          public boolean remove(@CheckForNull Object o) {
            if (!contains(o)) {
              return false;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top