Sun 24 Jun 2012
Mirrored Lenses
Posted by Edward Kmett under Algorithms , Data Structures , Haskell , Lenses[2] Comments
Lenses are a great way to deal with functional references, but there are two common issues that arise from their use.
- There is a long-standing folklore position that lenses do not support polymorphic updates. This has actually caused a fair bit of embarrassment for the folks who'd like to incorporate lenses in any Haskell record system improvement.
- Access control. It'd be nice to have read-only or write-only properties -- "one-way" or "mirrored" lenses, as it were. Moreover, lenses are commonly viewed as an all or nothing proposition, in that it is hard to mix them with arbitrary user functions.
- Finally there is a bit of a cult around trying to generalize lenses by smashing a monad in the middle of them somewhere, it would be nice to be able to get into a list and work with each individual element in it without worrying about someone mucking up our lens laws, and perhaps avoid the whole generalized lens issue entirely.
We'll take a whack at each of these concerns in turn today.
(more...)