Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for ImmutableMapKeySet (0.22 seconds)

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

        return isEmpty()
            ? ImmutableSet.of()
            : new ImmutableMapEntrySet.RegularEntrySet<K, V>(this, entries);
      }
    
      @Override
      ImmutableSet<K> createKeySet() {
        return new ImmutableMapKeySet<>(this);
      }
    
      @Override
      public void forEach(BiConsumer<? super K, ? super V> action) {
        checkNotNull(action);
        for (Entry<K, V> entry : entries) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 11K bytes
    - Click Count (0)
Back to Top