c1<ComposedOutput> method

_ChainCompose21<Input1, Input2, Output, ComposedOutput> c1<ComposedOutput>(
  1. ComposedOutput c1Compose(
    1. Output output
    )
)

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

Implementation

_ChainCompose21<Input1, Input2, Output, ComposedOutput> c1<ComposedOutput>(
  ComposedOutput Function(Output output) c1Compose,
) =>
    _ChainCompose21(c1Compose, _compose, _input1, _input2);