mapOr<W> abstract method

W mapOr<W>(
  1. W defaultValue,
  2. W fn(
    1. S ok
    )
)

Returns the provided default (if Err), or applies a function to the contained value (if Ok).

Implementation

W mapOr<W>(W defaultValue, W Function(S ok) fn);