Hey guys, the types of Pipes.Zlib/Gzip are in the form Producer -> Producer, if I was to implement such a library my first though would be to make them Pipes, so you could compose them as such ` producer >-> compress >-> consumer`.
instead i have to use the form `for producer (\x -> compress (yield x)) >-> consumer` which works correctly for my current project, but I'm left wondering why I have to perform such gymnastics to turn them in to pipes, something tells me that i need to use ~> but even if I can get it to compile, I don't get any output. So can anyone give me some insight to this, thanks - Daniel -- You received this message because you are subscribed to the Google Groups "Haskell Pipes" group. To unsubscribe from this group and stop receiving emails from it, send an email to haskell-pipes+unsubscr...@googlegroups.com. To post to this group, send email to haskell-pipes@googlegroups.com.