
1 Feb
2005
1 Feb
'05
2 p.m.
On Mon, 31 Jan 2005, Henning Thielemann wrote:
On Mon, 31 Jan 2005 karczma@info.unicaen.fr wrote:
The double ordering: a < b < c
By the way there is a nice functional implementation of a < b < c:
zapWith :: [a -> a -> b] -> [a] -> [b] zapWith fs xs = zipWith3 id fs xs (tail xs)
usage:
and zapWith [ (<), (<) ] [a, b, c]
sorry, must be and $ zapWith [ (<), (<) ] [a, b, c]