[Haskell-cafe] Re: Stream processors

MR K P SCHUPKE k.schupke at imperial.ac.uk
Thu Oct 21 12:34:14 EDT 2004


>No, my stream processors currently have the API I described

My point was... using the IO library I posted which abstracts
the buffer management, you can treat the IO as a simple list...
so you don't need to manage the buffers as such and you
can use a simple stream processor like:

> 	process :: [a] -> [a]

But of course you have to use the List class operators so 
that would become:

	process:: List l a => l a -> l a

Keean.


More information about the Haskell-Cafe mailing list