
21 Oct
2004
21 Oct
'04
12:34 p.m.
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.