pipe method

Call pipe(
  1. Consumer<T> consumer
)

Returns a composed Call that calls this Supplier and applies the result to consumer.

Implementation

Call pipe(Consumer<T> consumer) => () => consumer(this());