errOr abstract method

Result<T> errOr(
  1. Result<T> other
)

Returns this if it's Err, otherwise returns the other Result.

Implementation

Result<T> errOr(Result<T> other);