In functional programming, a lens is a composable field accessor. Lenses allow nested data structures to be manipulated in a concise and side-effect-free way.
8
votes
2answers
154 views
How does Haskell's lens package handle fields that are also keywords?
How does lens handle the case where a de-sugared field is a keyword? I seem to remember reading that something special is done, but I can't remember where I read it or what the name of the "lensed" ...
3
votes
1answer
80 views
Construct predicates with lenses
I want to create a function A -> Bool using some lenses of A. For instance:
data A = A { _foo :: Int, _bar :: Int }
makeLenses ''A
l :: [A]
l' = filter (\a -> a^.foo > 100) l
The filter ...
9
votes
1answer
109 views
Lens package with algebraic types
I was coding with with the lens package. Everything was going fine until I tried to access a certain field on an algebraic type:
import Control.Lens
data Type = A { _a :: Char } | B
makeLenses ...
6
votes
2answers
118 views
Composing partial getters using the lens library
I am using the lens package and and keep thinking there must be an easy solution to the following problem. Say I have some map (or any At instance) and a lens on its value type, ie
aMap :: Map Int a
...
8
votes
2answers
239 views
traversal tree with Lens and Zippers
I'm learning the Lens package. I must say it's a rather challenging task.
Can someone show me how to traverse a Tree with Zipper from Lens? In particular, how can I write a function that takes a ...
6
votes
1answer
173 views
Control.Lens performance overhead
I am appreciating the Control.Lens package. It really helps with the slightly weak Haskell record syntax. I'm working on some parts of a library where performance is a concern. Does anyone know what ...
3
votes
1answer
356 views
Composition of partial lenses
I'm trying to figure out the cleanest way to modify values nested inside of Maybe types (or other types for modeling partiality).
Here is the example setup:
{-# LANGUAGE TemplateHaskell #-}
import ...
2
votes
1answer
101 views
Data Validation for Records
Are you aware of any Haskell library that
provides some simplification for record validation and (!)
works with Aeson?
I know that I could write some constructor functions but I would like to ...
3
votes
2answers
138 views
How do I handle the Maybe result of at in Control.Lens.Indexed without a Monoid instance
I recently discovered the lens package on Hackage and have been trying to make use of it now in a small test project that might turn into a MUD/MUSH server one very distant day if I keep working on ...
2
votes
1answer
162 views
Update immutable data structure through inheritance
I'm making a strategic game and I try to apply what I learned, try to use immutable data. In my game I have Units, these units can have different special function. By exemple some plane can hide ...
6
votes
3answers
357 views
Data.Lens or Control.Lens [duplicate]
Possible Duplicate:
lenses, fclabels, data-accessor - which library for structure access and mutation is better
I'm going to use and learn a Lens package on my next Haskell project. I had ...
8
votes
4answers
179 views
Making a single function work on lists, ByteStrings and Texts (and perhaps other similar representations)
I'm writing a function that does some searching in a sequence of arbitrary symbols. I'd like to make it generic enough so that it works on lists, Foldables as well on ByteStrings and Texts. ...
7
votes
2answers
384 views
Scalaz Lens Composition
Really simple question here. After watching an excellent introduction to lenses:
http://www.youtube.com/watch?v=efv0SQNde5Q
I thought I might attempt one of the simple examples covered in the talk:
...
19
votes
4answers
1k views
What are lenses used/useful for?
I can't seem to find any explanation of what lenses are used for in practical examples. This short paragraph from the Hackage page is the closest I've found:
This modules provides a convienient ...
18
votes
2answers
1k views
What are the advantages and disadvantages of using lenses?
Lenses don't seem to have any disadvantages while having significant advantages over standard Haskell: Is there any reason I shouldn't use lenses wherever possible? Are there performance ...
13
votes
2answers
552 views
Avoiding repetition using lenses whilst deep-copying into Map values
I have an immutable data structure where I have nested values in Maps, like so:
case class TradingDay(syms: Map[String, SymDay] = Map.empty)
case class SymDay(sym: String, traders: Map[String, ...
4
votes
1answer
253 views
Ambiguous type variables for dependent class constraints
I'm writing a new authentication system for the Snap web framework, because the built-in one isn't modular enough, and it has some features that are redundant/"dead weight" for my application. This ...
47
votes
2answers
5k views
Functional lenses
Could someone explain functional lenses to me? It's a surprisingly difficult subject to google for and I haven't made any progress. All I know is that they provide similar get/set functionality than ...
109
votes
1answer
8k views
lenses, fclabels, data-accessor - which library for structure access and mutation is better
There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: data-accessor, fclabels and lenses.
Personally I started with data-accessor and ...