
10 Sep
2007
10 Sep
'07
2:35 a.m.
On 9/9/07, ok
I wanted to use the standard name for the function
pair :: (a -> b) -> (a -> c) -> (a -> (b,c))
pair f g x = (f x, g x)
but I can find no such function in the Report or its Libraries. Is there a recommended name for this?
It is called (&&&) and is avaiable from Control.Arrow. -- Felipe.