c1<ComposedOutput> method

Compose<Input, ComposedOutput> c1<ComposedOutput>(
  1. ComposedOutput c1Compose(
    1. Output output
    )
)

Chain a function that takes the output Output from this Compose and returns a new Compose that when called will execute c1Compose, returning a value of type ComposedOutput.

Implementation

Compose<Input, ComposedOutput> c1<ComposedOutput>(
  ComposedOutput Function(Output output) c1Compose,
) =>
    Compose<Input, ComposedOutput>(
      (input) => c1Compose(_compose(input)),
      _input,
    );