AsyncResult.prototype.inspectErr(fn: (error: E) => void | Promise<void>): AsyncResult<T, E>
Performs a side effect on the Err value without changing the result.
fn: (error: E) => void | Promise<void>
Function to call with the error value (if Err)
AsyncResult<T, E>
This AsyncResult, unchanged