Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for EnumMapAccumulator (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            },
            EnumMapAccumulator::combine,
            EnumMapAccumulator::toImmutableMap);
      }
    
      private static final class EnumMapAccumulator<K extends Enum<K>, V> {
        private final BinaryOperator<V> mergeFunction;
        private @Nullable EnumMap<K, V> map = null;
    
        EnumMapAccumulator(BinaryOperator<V> mergeFunction) {
          this.mergeFunction = mergeFunction;
        }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 16.6K bytes
    - Click Count (0)
Back to Top