compose<U> method

Method<U, O> compose<U>(
  1. Method<U, I> composer
)

Implementation

Method<U, O> compose<U>(final Method<U, I> composer) {
  return composer.map((i) => this(i));
}