Re: bracket_

2001-10-15 Thread Marcin 'Qrczak' Kowalczyk
Sun, 14 Oct 2001 23:25:40 -0400, Ken Shan <[EMAIL PROTECTED]> pisze: > In Haskell's standard IO module, bracket_ is defined to have type > > IO a -> (a -> IO b) -> IO c -> IO c > > However, in the Exception module in hslibs, bracket_ has type

bracket_

2001-10-14 Thread Ken Shan
In Haskell's standard IO module, bracket_ is defined to have type IO a -> (a -> IO b) -> IO c -> IO c However, in the Exception module in hslibs, bracket_ has type IO a -> IO b -> IO c -> IO c which IMHO is much less useful, not to mention confusing. Coul