createComputations4to1 function
Implementation
void createComputations4to1(
int n,
List<ISignal<int>> sources,
ReactiveFramework framework,
) {
for (var i = 0; i < n; i++) {
createComputation4(
sources[i * 4].read,
sources[i * 4 + 1].read,
sources[i * 4 + 2].read,
sources[i * 4 + 3].read,
framework,
);
}
}