- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for standardRetainAll (0.05 sec)
-
android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
@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 public <T> T[] toArray(T[] array) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java
@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 public <T> T[] toArray(T[] array) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* #elementSet}. If you override {@link #elementSet}, you may wish to override {@link #retainAll} * 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)