map<I, O> static method

Method<I, O> map<I, O>(
  1. Method<I, O> mapper
)

Implementation

static Method<I, O> map<I, O>(final Method<I, O> mapper) => (i) => mapper(i);