Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ForwardingCollection (0.11 sec)

  1. 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)
  2. 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)
  3. android/guava/src/com/google/common/collect/Sets.java

       */
      @SafeVarargs
      public static <B> Set<List<B>> cartesianProduct(Set<? extends B>... sets) {
        return cartesianProduct(asList(sets));
      }
    
      private static final class CartesianSet<E> extends ForwardingCollection<List<E>>
          implements Set<List<E>> {
        private final transient ImmutableList<ImmutableSet<E>> axes;
        private final transient CartesianList<E> delegate;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          }
        };
      }
    
      /** The implementation of {@link Multimaps#unmodifiableEntries}. */
      static class UnmodifiableEntries<K extends @Nullable Object, V extends @Nullable Object>
          extends ForwardingCollection<Entry<K, V>> {
        private final Collection<Entry<K, V>> entries;
    
        UnmodifiableEntries(Collection<Entry<K, V>> entries) {
          this.entries = entries;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          }
        };
      }
    
      /** The implementation of {@link Multimaps#unmodifiableEntries}. */
      static class UnmodifiableEntries<K extends @Nullable Object, V extends @Nullable Object>
          extends ForwardingCollection<Entry<K, V>> {
        private final Collection<Entry<K, V>> entries;
    
        UnmodifiableEntries(Collection<Entry<K, V>> entries) {
          this.entries = entries;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top