Exemple #1
0
 public IAsyncReducer <TReduction, TInput> Apply <TReduction>(IAsyncReducer <TReduction, TResult> next) =>
 Left.Apply(Right.Apply(next));
Exemple #2
0
 public IAsyncReducer <TReduction, TInput> Apply <TReduction>(IAsyncReducer <TReduction, TResult> next) =>
 Async.Apply(next);
Exemple #3
0
 public static IAsyncReducer <TextWriter, TInput> AsyncWriteReducer <TInput>(
     this IAsyncTransducer <TInput, string> transducer) => transducer.Apply(AsyncWriteReducer());