Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for retainAllImpl (0.06 sec)

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

        return Multisets.removeAllImpl(this, elementsToRemove);
      }
    
      @CanIgnoreReturnValue
      @Override
      public final boolean retainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      @Override
      public abstract void clear();
    
      // Views
    
      @LazyInit private transient @Nullable Set<E> elementSet;
    
      @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRetainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int)} in terms of {@link #count(Object)},
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMultiset.java

       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRetainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int)} in terms of {@link #count(Object)},
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multisets.java

                : elementsToRemove;
    
        return self.elementSet().removeAll(collection);
      }
    
      /** An implementation of {@link Multiset#retainAll}. */
      static boolean retainAllImpl(Multiset<?> self, Collection<?> elementsToRetain) {
        checkNotNull(elementsToRetain);
        Collection<?> collection =
            (elementsToRetain instanceof Multiset)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multisets.java

                : elementsToRemove;
    
        return self.elementSet().removeAll(collection);
      }
    
      /** An implementation of {@link Multiset#retainAll}. */
      static boolean retainAllImpl(Multiset<?> self, Collection<?> elementsToRetain) {
        checkNotNull(elementsToRetain);
        Collection<?> collection =
            (elementsToRetain instanceof Multiset)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.3K bytes
    - Viewed (0)
Back to top