Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for denylist (0.05 seconds)

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

        return valueList.size();
      }
    
      @Override
      public void forEach(BiConsumer<? super K, ? super V> action) {
        checkNotNull(action);
        ImmutableList<K> keyList = keySet.asList();
        for (int i = 0; i < size(); i++) {
          action.accept(keyList.get(i), valueList.get(i));
        }
      }
    
      @Override
      public @Nullable V get(@Nullable Object key) {
        int index = keySet.indexOf(key);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 52.1K bytes
    - Click Count (0)
Back to Top