-
-
Notifications
You must be signed in to change notification settings - Fork 245
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: eab3dbf The changes in this PR will be included in the next version bump. This PR includes changesets to release 31 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
d7e544c
to
e44e0aa
Compare
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.