Unwrapping a Result with Yield in Typescript

is the only way to unwrap a result to yield it? e.g.
const result = Result.succeed("hello");
const success = yield* result;
Was this page helpful?