-
Notifications
You must be signed in to change notification settings - Fork 54
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
Microlens exports conflict with Lens #180
Comments
We could instead provide A simple local solution would be to define it yourself:
|
I ran into this very issue. I wasn't hindered by any knowledge about this, and assumed importing RIO was safe. As it turns out, importing RIO without hiding stuff will likely break a build with using cabal. See AmpersandTarski/Ampersand#1142 |
Is there a way to hide |
I am thinking that I could bundle the real lens with it. |
I needed to install lens as microlens has too few features. However,
RIO
exports microlens functions which conflict with the lens functions. This means I have to add ahiding
line to everyRIO
import, which is inconvenient. I think the lens functions should be provided by a separate module, to help avoid this.The text was updated successfully, but these errors were encountered: