
10 Sep
2007
10 Sep
'07
2:32 a.m.
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?