RE: Blocking I/O FIFOs

2000-05-14 Thread Manuel M. T. Chakravarty
Simon Marlow [EMAIL PROTECTED] wrote, An inefficient solution is to fork a process that will block and then feed us through a pipe. Probably too bad to make it built-in, but at least should work if somebody desperately needs the functionality. I would be surprised if POSIX

Re: user Prelude

2000-05-14 Thread Fergus Henderson
On 15-May-2000, S.D.Mechveliani [EMAIL PROTECTED] wrote: ... only several days ago I have realized or recalled that it is possible to replace some algebraic part of Prelude-98 with the user prelude. Someone, - thanks for the help, - had confirmed this recently: use import qualified

Re: user Prelude

2000-05-14 Thread Fergus Henderson
On 15-May-2000, Marcin 'Qrczak' Kowalczyk [EMAIL PROTECTED] wrote: Mon, 15 May 2000 08:53:21 +0400 (MSD), S.D.Mechveliani [EMAIL PROTECTED] pisze: I expect, it would not be good to repeat the definitions of data Maybe, data Bool in MyPrelude. 1. import qualified

Re: user Prelude

2000-05-14 Thread Marcin 'Qrczak' Kowalczyk
Mon, 15 May 2000 08:53:21 +0400 (MSD), S.D.Mechveliani [EMAIL PROTECTED] pisze: I expect, it would not be good to repeat the definitions of data Maybe, data Bool in MyPrelude. 1. import qualified Prelude import Prelude (Bool(..), Maybe(..), etc.) 2. import Prelude