Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for forEachEntry (0.13 sec)

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

              return entrySpliterator();
            }
    
            @Override
            public void forEach(Consumer<? super Entry<K, V>> action) {
              forEachEntry(action);
            }
          };
        }
    
        void forEachEntry(Consumer<? super Entry<K, V>> action) {
          entryIterator().forEachRemaining(action);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top