map<R> method

Try<R, UserException> map<R>(
  1. R transform(
    1. SuccessT value
    )
)
inherited

Returns the encapsulated result of the given transform function applied to the encapsulated value if this instance represents success or the original encapsulated Throwable exception if it is failure.

Implementation

Try<R, Failure> map<R>(R Function(Success value) transform) {
  if (isSuccess) {
    return Try.success(transform(getOrThrow()));
  } else {
    return Try.failure(exceptionOrNull());
  }
}