Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newHashSetWithExpectedSize (0.19 sec)

  1. android/guava/src/com/google/common/collect/LinkedListMultimap.java

          current.value = value;
        }
      }
    
      /** An {@code Iterator} over distinct keys in key head order. */
      private class DistinctKeyIterator implements Iterator<K> {
        final Set<K> seenKeys = Sets.<K>newHashSetWithExpectedSize(keySet().size());
        @CheckForNull Node<K, V> next = head;
        @CheckForNull Node<K, V> current;
        int expectedModCount = modCount;
    
        private void checkForConcurrentModification() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 27.2K bytes
    - Viewed (0)
Back to top