public static class Extensions
Extension methods that simplify unit testing and should not be included in the package.
public static O RunSync<O>(this IPipe<Unit, O> self)
Runs the pipe synchronously.
self
: The pipe to execute.
public static O RunSync<I, O>(this IPipe<I, O> self, I input)
Runs the pipe synchronously.
self
: The pipe to execute.