-
-
Notifications
You must be signed in to change notification settings - Fork 271
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
Make the generic type order consistent in the Left
, Right
, and Either
#3650
base: next-major
Are you sure you want to change the base?
Make the generic type order consistent in the Left
, Right
, and Either
#3650
Conversation
🦋 Changeset detectedLatest commit: 13e8e49 The changes in this PR will be included in the next version bump. This PR includes changesets to release 35 packages
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 |
987e88e
to
7100817
Compare
Left
, Right
, and Either
Left
, Right
, and Either
Looks good but it's a breaking change so it would be for the next major |
Thanks @mikearnaldi, I will add the necessary changeset. |
29a0e4a
to
f69e0e1
Compare
6b92524
to
131b6fe
Compare
61bf528
to
eab3dbf
Compare
Hello @mikearnaldi, I have added the changesets and also resolved the conflicts. I hope this is good to merge! Let me know if I missed anything. |
Type
Description
This PR makes the generic type order consistent between
Left
,Right
, andEither
. It updatesLeft<L, R>
andRight<L, R>
toLeft<R, L>
andRight<R, L>
, respectively.