mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
classlib: add TCollectors#collectingAndThen
and TCollectors#toUnmodifiableList
This commit is contained in:
parent
81ed5ef829
commit
b6837340e5
|
@ -17,6 +17,8 @@ package org.teavm.classlib.java.util.stream;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.EnumSet;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
|
@ -43,6 +45,10 @@ public final class TCollectors {
|
|||
return toCollection(ArrayList::new);
|
||||
}
|
||||
|
||||
public static <T> TCollector<T, ?, List<T>> toUnmodifiableList() {
|
||||
return collectingAndThen(toList(), Collections::unmodifiableList);
|
||||
}
|
||||
|
||||
public static <T> TCollector<T, ?, Set<T>> toSet() {
|
||||
return toCollection(HashSet::new);
|
||||
}
|
||||
|
@ -117,4 +123,19 @@ public final class TCollectors {
|
|||
},
|
||||
TCollector.Characteristics.IDENTITY_FINISH);
|
||||
}
|
||||
|
||||
public static <T, A, R, K> TCollector<T, A, K> collectingAndThen(
|
||||
TCollector<T, A, R> downstream,
|
||||
Function<R, K> finisher) {
|
||||
|
||||
EnumSet<TCollector.Characteristics> newCharacteristics = EnumSet.copyOf(downstream.characteristics());
|
||||
newCharacteristics.remove(TCollector.Characteristics.IDENTITY_FINISH);
|
||||
|
||||
return new TCollectorImpl<>(downstream.supplier(),
|
||||
downstream.accumulator(),
|
||||
downstream.combiner(),
|
||||
downstream.finisher().andThen(finisher),
|
||||
newCharacteristics);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user