Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix combineWithAllErrors types #483

Merged
merged 7 commits into from
Aug 28, 2024

Conversation

braxtonhall
Copy link
Contributor

@braxtonhall braxtonhall commented Jun 27, 2023

combineWithAllErrors provides types that are not necessarily correct.

const foo: Result<"a", "b"> = ok("a");
const bar: Result<"c", "d"> = err("d");
Result.combineWithAllErrors([foo, bar]).mapErr((errors) => {
	errors satisfies ["b", "d"]; // should NOT satisfy, but DOES :/
	console.log(errors); // logs ['d'] despite having type ['b', 'd']
	
	const [b] = errors;
	b satisfies "b"; // should NOT satisfy, but DOES :/
	console.log(b); // logs 'd' despite having type "b"
});

The documentation actually correctly matches the implementation, but the type declarations are a little off. In the types, if a literal array is provided, the Results are given to TraverseWithAllErrors which preserves the error order.

@braxtonhall braxtonhall marked this pull request as ready for review June 27, 2023 11:08
@supermacro
Copy link
Owner

#496

@m-shaka
Copy link
Collaborator

m-shaka commented Aug 20, 2024

@braxtonhall Hi, this PR looks nice.
Can you resolve conflicts?

Copy link

changeset-bot bot commented Aug 20, 2024

🦋 Changeset detected

Latest commit: ecc25b9

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
neverthrow Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@braxtonhall braxtonhall force-pushed the fix-combine-with-all-errors branch from a05f03e to e66ac73 Compare August 20, 2024 15:18
@braxtonhall
Copy link
Contributor Author

@braxtonhall Hi, this PR looks nice. Can you resolve conflicts?

@m-shaka resolved!

@supermacro supermacro merged commit 5121236 into supermacro:master Aug 28, 2024
8 checks passed
This was referenced Aug 28, 2024
@braxtonhall braxtonhall deleted the fix-combine-with-all-errors branch August 29, 2024 22:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants