Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            : collection.iterator();
      }
    
      /** Set decorator that stays in sync with the multimap values for a key. */
      @WeakOuter
      final class WrappedSet extends WrappedCollection implements Set<V> {
        WrappedSet(@ParametricNullness K key, Set<V> delegate) {
          super(key, delegate, null);
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          if (c.isEmpty()) {
    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