- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ForwardingCollection (0.09 sec)
-
android/guava/src/com/google/common/collect/FilteredKeyMultimap.java
throw new AssertionError("should never be called"); } @Override Collection<Entry<K, V>> createEntries() { return new Entries(); } @WeakOuter class Entries extends ForwardingCollection<Entry<K, V>> { @Override protected Collection<Entry<K, V>> delegate() { return Collections2.filter(unfiltered.entries(), entryPredicate()); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTransformValuesUnmodifiableIteratorTest.java
public boolean retainAll(Collection<?> c) { return delegate.keySet().retainAll(c); } }; } @Override public Collection<V> values() { return new ForwardingCollection<V>() { @Override protected Collection<V> delegate() { return delegate.values(); } @Override public Iterator<V> iterator() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12.3K bytes - Viewed (0)