We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Do(E.either)
Using the Either type with the Do notation is marked as deprecated with the message "Use small, specific instances instead."
Do(E.either) // <-- `either` is marked deprecated .bind("name", value) .return(({name}) => ({out: name}));
It has no compiler warnings or errors.
See above
Should either really be deprecated, or is there an alternate "smaller" type that we can use in these places?
either
n/a
Which versions of fp-ts-contrib are affected by this issue? Did this work in previous versions of fp-ts-contrib?
The text was updated successfully, but these errors were encountered:
Looks like you are using [email protected] (where E.either is deprecated). You can use E.Monad instead
[email protected]
E.either
E.Monad
Sorry, something went wrong.
No branches or pull requests
🐛 Bug report
Current Behavior
Using the Either type with the Do notation is marked as deprecated with the message "Use small, specific instances instead."
Expected behavior
It has no compiler warnings or errors.
Reproducible example
See above
Suggested solution(s)
Should
either
really be deprecated, or is there an alternate "smaller" type that we can use in these places?Additional context
n/a
Your environment
Which versions of fp-ts-contrib are affected by this issue? Did this work in previous versions of fp-ts-contrib?
The text was updated successfully, but these errors were encountered: