in jvm/diffuser/src/main/java/com/spotify/diffuser/diffuser/Diffuser.java [78:85]
private static <A> Effect<A> effectFromChildren(Collection<Diffuser<A>> children) {
List<Diffuser<A>> copiedChildren = new ArrayList(children);
return newValue -> {
for (Diffuser<A> diffuser : copiedChildren) {
diffuser.run(newValue);
}
};
}