Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
This is equivalent to the http://hackage.haskell.org/package/pipes-text/docs/Pipes-Text.html#v:lines except it works for lines delimited with "\r\n"
Documentation
lines :: Monad m => Lens' (Producer Text m r) (FreeT (Producer Text m) m r) Source #
Producer of strict Text
s is delimited by "\r\n"
>>>
runEffect $ for (over (lines . individually) (<* yield "!") (yield "asdf\r\nqwerty\r\n")) (lift . print)
"asdf" "!" "\r\n" "qwerty" "!" "\r\n"
line :: Monad m => Producer Text m r -> Producer Text m (Producer Text m r) Source #
Producer which consumes a single line, then returns a producer with rest of input.
>>>
rest <- runEffect $ for (line (yield "foo\r\nbar\r\nbaz\r\n")) (lift . print)
"foo">>>
runEffect $ for rest (lift . print)
"bar\r\nbaz\r\n"