All Questions
2 questions
9
votes
2
answers
1k
views
Is Haskell function composition an instance of pipe & filter architectural pattern
The pipe & filter architectural pattern is defined as a chain of processing elements, arranged so that the output of each element is the input of the next. Every example seems to consider inter-...
52
votes
1
answer
10k
views
How do you design programs in Haskell or other functional programming languages?
I have some experience in object oriented programming languages like c# or ruby. I know how to design a program in object oriented style, how to create classes and objects, and how to define relations ...