Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for asEntryToEntryFunction (0.14 seconds)

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

          return new Entries();
        }
    
        @Override
        Iterator<Entry<K, V2>> entryIterator() {
          return Iterators.transform(
              fromMultimap.entries().iterator(), Maps.asEntryToEntryFunction(transformer));
        }
    
        @Override
        public Collection<V2> get(@ParametricNullness K key) {
          return transform(key, fromMultimap.get(key));
        }
    
        @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 86.5K bytes
    - Click Count (0)
Back to Top