Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for forEachEntry (0.29 sec)

  1. guava/src/com/google/common/collect/Multisets.java

      private static <E extends @Nullable Object> boolean addAllImpl(
          Multiset<E> self, Multiset<? extends E> elements) {
        if (elements.isEmpty()) {
          return false;
        }
        elements.forEachEntry(self::add);
        return true;
      }
    
      /** An implementation of {@link Multiset#removeAll}. */
      static boolean removeAllImpl(Multiset<?> self, Collection<?> elementsToRemove) {
        Collection<?> collection =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

              return entrySpliterator();
            }
    
            @Override
            public void forEach(Consumer<? super Entry<K, V>> action) {
              forEachEntry(action);
            }
          };
        }
    
        void forEachEntry(Consumer<? super Entry<K, V>> action) {
          entryIterator().forEachRemaining(action);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    final int seedvalue(); public final void seedvalue_$eq(int); public final int tableSizeSeed(); private HashEntry findEntry(Object); private HashEntry removeEntry(Object); public final scala.collection.Iterator entriesIterator(); public final void foreachEntry(scala.Function1); public final void nnSizeMapAdd(int); public final void nnSizeMapRemove(int); public final void nnSizeMapReset(int); public final int calcSizeMapSize(int); public final boolean elemEquals(Object, Object); public final int index(int);...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top