Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for spliteratorWithCharacteristics (0.22 seconds)

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

          return entries.iterator();
        }
    
        @Override
        @GwtIncompatible // Spliterator
        public Spliterator<Entry<K, V>> spliterator() {
          return entries.spliteratorWithCharacteristics(SPLITERATOR_CHARACTERISTICS);
        }
    
        @Override
        public void forEach(Consumer<? super Entry<K, V>> action) {
          entries.forEach(action);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 4.3K bytes
    - Click Count (0)
Back to Top