map<W> method
Implementation
FutureResult<W, F> map<W>(FutureOr<W> Function(S ok) fn) {
return mapOrElse(
Err.new,
(ok) async {
return Ok(await fn(ok));
},
);
}
FutureResult<W, F> map<W>(FutureOr<W> Function(S ok) fn) {
return mapOrElse(
Err.new,
(ok) async {
return Ok(await fn(ok));
},
);
}