/// <summary> /// Creates a new FairMergePipe based on the given Pipes. /// </summary> public FairMergePipe(params IPipe[] Pipes) { this._Pipes = Pipes; this.total = Pipes.Count(); }
/// <summary> /// Creates a new ExhaustiveMergePipe based on the given Pipes. /// </summary> public ExhaustiveMergePipe(params IPipe[] Pipes) { this._Pipes = Pipes; this.total = Pipes.Count(); }