Tagged Questions
12
votes
2answers
581 views
Zipper like data structure with more then one cursor
The Zipper data structure is great when one wants to traverse a tree and keep the current position, but what data structure one should use if they want to track more then one position?
Let me explain ...
7
votes
1answer
107 views
Type errors with Existential types in Haskell
I am struggling with existential types in my program. I think I'm trying to do something very reasonable however I cannot get past the typechecker :(
I have a datatype that sort of mimics a Monad
...
3
votes
2answers
672 views
Haskell: Creating Type Classes for Zippers
So I've been reading a bit about the Zipper pattern in Haskell (and other functional languages, I suppose) to traverse and modify a data structure, and I thought that this would be a good chance for ...