ts-data-forge
Version:
[](https://www.npmjs.com/package/ts-data-forge) [](https://www.npmjs.com/package/ts-data-forge) [;
*
* const second = Result.ok(1);
*
* const expected = ['left', 1] as const;
*
* assert.deepStrictEqual(Result.zip(first, second), Result.ok(expected));
*
* assert.deepStrictEqual(
* Result.zip(first, Result.err('error')),
* Result.err('error'),
* );
* ```
*
* @template S1 The success type of the first `Result`.
* @template E1 The error type of the first `Result`.
* @template S2 The success type of the second `Result`.
* @template E2 The error type of the second `Result`.
* @param resultA The first `Result`.
* @param resultB The second `Result`.
* @returns A `Result` containing a tuple of both values, or the first `Err`.
*/
export declare const zip: <S1, E1, S2, E2>(resultA: Result<S1, E1>, resultB: Result<S2, E2>) => Result<readonly [S1, S2], E1 | E2>;
//# sourceMappingURL=result-zip.d.mts.map