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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The type signature on the cheat sheet says:
outside :: Prism s t a b -> Lens (s -> r) (t -> r) (a -> r) (b -> r)
But in fact s and t, and a and b should be swapped:
s
t
a
b
outside :: Prism s t a b -> Lens (t -> r) (s -> r) (b -> r) (a -> r)
The text was updated successfully, but these errors were encountered:
See https://hackage.haskell.org/package/lens-5.3.2/docs/Control-Lens-Prism.html#v:outside and specialise p = (->).
p = (->)
Sorry, something went wrong.
No branches or pull requests
The type signature on the cheat sheet says:
But in fact
s
andt
, anda
andb
should be swapped:The text was updated successfully, but these errors were encountered: