We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23d126 commit 09faf35Copy full SHA for 09faf35
.changeset/empty-poets-collect.md
@@ -0,0 +1,19 @@
1
+---
2
+'neverthrow': major
3
4
+
5
+Allow orElse method to change ok types.
6
+This makes the orElse types match the implementation.
7
8
+This is a breaking change for the orElse type argument list,
9
+as the ok type must now be provided before the err type.
10
11
+```diff
12
+- result.orElse<ErrType>(foo)
13
++ result.orElse<OkType, ErrType>(foo)
14
+```
15
16
+This only applies if type arguments were
17
+explicitly provided at an orElse callsite.
18
+If the type arguments were inferred,
19
+no updates are needed during the upgrade.
0 commit comments