Can I get some recommendations on defining a function composition operator that flows in the reverse direction? Thanks, Mike
To clarify, I'm interested in - what symbols you would choose - how to set the left/right associativity and precedence Michael P. Mossey wrote:
Can I get some recommendations on defining a function composition operator that flows in the reverse direction?
Thanks, Mike
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners
There is already one. Prelude Control.Arrow> :type (>>>) (>>>) :: (Control.Category.Category cat) => cat a b -> cat b c -> cat a c Michael Mossey wrote:
To clarify, I'm interested in
- what symbols you would choose - how to set the left/right associativity and precedence
Michael P. Mossey wrote:
Can I get some recommendations on defining a function composition operator that flows in the reverse direction?
Thanks, Mike
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners
Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners
-- Tony Morris http://tmorris.net/
Excerpts from Michael P. Mossey's message of Sun Nov 22 08:51:38 +0100 2009:
Can I get some recommendations on defining a function composition operator that flows in the reverse direction?
There is (>>>) in Control.Category. -- Nicolas Pouillard http://nicolaspouillard.fr
participants (4)
-
Michael Mossey -
Michael P. Mossey -
Nicolas Pouillard -
Tony Morris