Compose<Input, Output> constructor

const Compose<Input, Output>(
  1. Output _compose(
    1. Input input
    ),
  2. Input _input
)

Instance of Compose given the function Output Function(Input input) to execute and the Input to pass to the function.

Implementation

const Compose(this._compose, this._input);