tycho-solver
Version:
Evolutionary computation and optimization library
10 lines • 325 B
TypeScript
import { Step } from './Step';
/**
* Applies a sequence of steps to the input, passing the result of each to the next.
*/
export declare class SequentialOperator<T> implements Step<T> {
private steps;
constructor(steps: Step<T>[]);
apply(input: T): Promise<T>;
}
//# sourceMappingURL=SequentialOperator.d.ts.map