-
Notifications
You must be signed in to change notification settings - Fork 12
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
This library prevents me from using OCaml 4.08's Result module #8
Comments
What about we make installing |
Are there any issues with @hhugo's suggestion to make |
I believe making |
@hongchangwu That's a very good point. Rather than making it a no-op, are there any issues with this library defining include Result
type ('ok, 'error) result = ('ok, 'error) t It would be nice to not have to hack around this shadowing when using newer OCaml releases. |
The |
I'll send a PR in the coming days. |
When I have this library as a dependency (including as a transitive one), I can't use the
Result
library from OCaml 4.08. However, I can work around it by doingStdlib.Result
.result-bug.tar.gz
As this library already checks the OCaml version, perhaps it could check for OCaml 4.08 and
include
the standard library'sResult
module.The text was updated successfully, but these errors were encountered: