Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ms (0.14 sec)

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

              Supplier<M> multisetSupplier) {
        checkNotNull(elementFunction);
        checkNotNull(countFunction);
        checkNotNull(multisetSupplier);
        return Collector.of(
            multisetSupplier,
            (ms, t) -> ms.add(elementFunction.apply(t), countFunction.applyAsInt(t)),
            (ms1, ms2) -> {
              ms1.addAll(ms2);
              return ms1;
            });
      }
    
      // Maps
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 16:21:40 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CollectCollectors.java

              Supplier<M> multisetSupplier) {
        checkNotNull(elementFunction);
        checkNotNull(countFunction);
        checkNotNull(multisetSupplier);
        return Collector.of(
            multisetSupplier,
            (ms, t) -> ms.add(elementFunction.apply(t), countFunction.applyAsInt(t)),
            (ms1, ms2) -> {
              ms1.addAll(ms2);
              return ms1;
            });
      }
    
      // Maps
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 16:21:40 GMT 2024
    - 17.2K bytes
    - Viewed (0)
Back to top