The type of the value contained in the ResultAsync for the success case
The type of the error contained in the ResultAsync for the failure case
The type of the value contained in the ResultAsync for the success case
The type of the error contained in the ResultAsync for the failure case
StaticcombineStaticcombineStaticfromStaticfromStaticfrom
ResultAsyncallows you to work with asynchronous Results in a type safe wayResultAsync<T,E>is a wrapper aroundPromise<Result<T,E>>which provides the same methods for chaining differentResultandResultAsynctogether as Result, while also chaining the asynchronous operations together usingPromise.then.ResultAsyncis thenable (implementsPromiseLike<T>) so can be used in most places that aPromisecan, including withawait.Compatible with
neverthrow