j
k
j a
j l
On Tue, Apr 22, 2003 at 04:35:25PM +0100, Malcolm Wallace wrote:
infixr # (#) :: (Show b) => (a->b) -> (a->String) -> (a->String) f # g = \t-> show (f t) ++ g t
Or, to avoid unnecessary overhead: (f # g) t = shows (f t) (g t) Lauri Alanko la@iki.fi
Back to the thread
Back to the list