map<U> method

Supplier<U> map<U>(
  1. Method<T, U> mapper
)

Implementation

Supplier<U> map<U>(final Method<T, U> mapper) {
  return () => mapper(this());
}