
14 Aug
2003
14 Aug
'03
4:02 p.m.
On Thursday, 2003-08-14, 17:05, CEST, Kevin S. Millikin wrote:
On Wednesday, August 13, 2003 11:20 PM, Tn X-10n [SMTP:kawairashii@hotmail.com] wrote:
is it possible to convert IO Bool to Bool?
Sure. Which Bool do you want? True?
toTrue :: IO Bool -> Bool toTrue x = True
Or False?
toFalse :: IO Bool -> Bool toFalse x = False
I wouldn't call these *conversion* functions because they don't look at their argument.
Maybe that's not what you had in mind.
Surely not. Wolfgang