Hi: Suppose I have a Bytestring producer, I want to use pipes-attoparsec/binary/etc to parse this producer, and send the result to a pipes-concurrent output mailbox. What's the idiomatic to achieve this result? Is using "parse :: A.Parser a b -> P.Parser a m (Either ParsingError b)" (from pipes-attoparsec) the correct approach for this situation? or should I stick with "parsed :: A.Parser a b -> P.Producer a m r -> P.Producer b m (Either (ParsingError P.Producer a m r) r)" (also from pipes-attoparsec)
-- 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 [email protected]. To post to this group, send email to [email protected].
