Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for delegateCollection (0.23 sec)

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

                Entry<K, V> entry = entries[index];
                return immutableEntry(entry.getValue(), entry.getKey());
              }
    
              @Override
              ImmutableCollection<Entry<V, K>> delegateCollection() {
                return InverseEntrySet.this;
              }
    
              // redeclare to help optimizers with b/310253115
              @SuppressWarnings("RedundantOverride")
              @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedMap.java

                return CollectSpliterators.indexed(
                    size(), ImmutableSet.SPLITERATOR_CHARACTERISTICS, this::get);
              }
    
              @Override
              ImmutableCollection<Entry<K, V>> delegateCollection() {
                return EntrySet.this;
              }
    
              // redeclare to help optimizers with b/310253115
              @SuppressWarnings("RedundantOverride")
              @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top