map<R> method

Using<R> map<R>(
  1. R mapper(
    1. T value
    )
)

Alter the value without mutating the field

Implementation

Using<R> map<R>(final R Function(T value) mapper) {
  return Using<R>(mapper(value));
}