Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for retainAll (0.07 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetEntrySetTester.java

      }
    
      @CollectionSize.Require(ONE)
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testEntrySet_retainAllPresent() {
        assertFalse(
            "multiset.entrySet.retainAll(presentEntry) returned false",
            getMultiset().entrySet().retainAll(singleton(Multisets.immutableEntry(e0(), 1))));
        assertTrue(
            "multiset doesn't contains element after retaining its entry",
            getMultiset().contains(e0()));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java

          return standardRemove(object);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

                      return map.entrySet().removeAll(c);
                    }
    
                    @Override
                    public boolean retainAll(Collection<?> c) {
                      return map.entrySet().retainAll(c);
                    }
    
                    @Override
                    public int hashCode() {
                      return map.entrySet().hashCode();
                    }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

          boolean didRemove = entrySet.retainAll(entriesToRetain);
          assertEquals(shouldRemove, didRemove);
          assertEquals(entriesToRetain.size(), map.size());
          for (Entry<K, V> entry : entriesToRetain) {
            assertTrue(entrySet.contains(entry));
          }
        } else {
          assertThrows(UnsupportedOperationException.class, () -> entrySet.retainAll(entriesToRetain));
        }
        assertInvariants(map);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      }
    
      @Override
      public boolean removeAll(Collection<?> c) {
        return delegate.removeAll(c);
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return delegate.retainAll(c);
      }
    
      @Override
      public int size() {
        return delegate.size();
      }
    
      @Override
      public NavigableSet<E> subSet(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingMultiset.java

        return Multisets.removeAllImpl(this, elementsToRemove);
      }
    
      /**
       * A sensible definition of {@link #retainAll} in terms of the {@code retainAll} method of {@link
       * #elementSet}. If you override {@link #elementSet}, you may wish to override {@link #retainAll}
       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java

          return standardRemove(object);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingMultiset.java

        return Multisets.removeAllImpl(this, elementsToRemove);
      }
    
      /**
       * A sensible definition of {@link #retainAll} in terms of the {@code retainAll} method of {@link
       * #elementSet}. If you override {@link #elementSet}, you may wish to override {@link #retainAll}
       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeRangeMap.java

              @Override
              public boolean remove(@CheckForNull Object o) {
                return SubRangeMapAsMap.this.remove(o) != null;
              }
    
              @Override
              public boolean retainAll(Collection<?> c) {
                return removeEntryIf(compose(not(in(c)), Maps.<Range<K>>keyFunction()));
              }
            };
          }
    
          @Override
          public Set<Entry<Range<K>, V>> entrySet() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractMultiset.java

      @Override
      public final boolean removeAll(Collection<?> elementsToRemove) {
        return Multisets.removeAllImpl(this, elementsToRemove);
      }
    
      @CanIgnoreReturnValue
      @Override
      public final boolean retainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      @Override
      public abstract void clear();
    
      // Views
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top