Unzips the optional of tuple into the tuple of optionals.
The zipped optional of tuple.
The unzipped tuple of optionals.
expect(unzip(some([1, "hi"]))).toStrictEqual([ some(1), some("hi"),]);expect(unzip(none())).toStrictEqual([ none(), none(),]); Copy
expect(unzip(some([1, "hi"]))).toStrictEqual([ some(1), some("hi"),]);expect(unzip(none())).toStrictEqual([ none(), none(),]);
Unzips the optional of tuple into the tuple of optionals.