Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KeysOrValuesAsList (0.11 sec)

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

            (ImmutableList<K>) new KeysOrValuesAsList(alternatingKeysAndValues, 0, size);
        return new KeySet<K>(this, keyList);
      }
    
      static final class KeysOrValuesAsList extends ImmutableList<Object> {
        private final transient @Nullable Object[] alternatingKeysAndValues;
        private final transient int offset;
        private final transient int size;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableBiMap.java

      }
    
      @Override
      ImmutableSet<K> createKeySet() {
        @SuppressWarnings("unchecked")
        ImmutableList<K> keyList =
            (ImmutableList<K>)
                new RegularImmutableMap.KeysOrValuesAsList(alternatingKeysAndValues, keyOffset, size);
        return new RegularImmutableMap.KeySet<>(this, keyList);
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top