8
votes
What are zygo/meta/histo/para/futu/dyna/whatever-morphisms?
Start with learning about catamorphisms; those are the easiest to grasp. You already know one: foldr!
Then go for anamorphisms (unfoldr) and paramorphisms. Only th …
4
votes
Contrasting C# generics with Haskell parameterized types
Another big difference is that C# generics don't allow abstraction over type constructors (i.e. kinds other than *) while Haskell does. Try translating the following datatype into a C# class:
…
0
votes
Finding the leaves of an inductively-defined tree
flatten node = node : concatMap flatten (genTree node)
…
1
vote
producer and consumer problem in haskell?
Besides the stateful approaches mentioned by Norman and Don, you can also think of normal function application and laziness as producer and consumer.
Here is a producer for the natural numb …
2
votes
Anyone ever flip (<$>)
Personally I wouldn't use such an operators because then I have to learn two orders in which to read programs.
…
