예제 #1
0
 public static Producer <OUT, X> enumerate <OUT, X>(IEnumerable <X> xs) =>
 PureProxy.ProducerEnumerate <OUT, X>(xs);
예제 #2
0
 public static Producer <A, Unit> yield <A>(A value) =>
 PureProxy.ProducerYield(value);
예제 #3
0
 public static Producer <X, X> observeX <X>(IObservable <X> xs) =>
 PureProxy.ProducerObserve <X, X>(xs);
예제 #4
0
 public static Consumer <A, A> awaiting <A>() =>
 PureProxy.ConsumerAwait <A>();
예제 #5
0
 public static Producer <X, X> enumerate2 <X>(IAsyncEnumerable <X> xs) =>
 PureProxy.ProducerEnumerate <X, X>(xs);