okOr abstract method

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

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

Implementation

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