Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ImmutableMapKeySet (0.06 sec)

  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) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top