Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AsMapEntries (0.04 sec)

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

        AsMap(Map<K, Collection<V>> submap) {
          this.submap = submap;
        }
    
        @Override
        protected Set<Entry<K, Collection<V>>> createEntrySet() {
          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@Nullable Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
Back to top