map<R> method
Alter the value without mutating the field
Implementation
Using<R> map<R>(final R Function(T value) mapper) {
return Using<R>(mapper(value));
}
Alter the value without mutating the field
Using<R> map<R>(final R Function(T value) mapper) {
return Using<R>(mapper(value));
}