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