(_f: (t: T) => Promise<U>)
| 482 | |
| 483 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 484 | asyncMap<U>(_f: (t: T) => Promise<U>): ResultAsync<U, E> { |
| 485 | return errAsync<U, E>(this.error) |
| 486 | } |
| 487 | |
| 488 | unwrapOr<A>(v: A): T | A { |
| 489 | return v |
nothing calls this directly
no test coverage detected