mapOr<W> method
W
mapOr<
W>( - W defaultValue,
- W fn(
- S ok
)
)
override
Returns the provided default (if Err), or applies a function to the contained value (if Ok).
Implementation
@override
W mapOr<W>(W defaultValue, W Function(S ok) fn) {
return fn(ok);
}