The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
89 views

Error reading and writing same file simultaneously in Haskell

I need to modify a file in-place. So I planned to read file contents, process them, then write the output to the same file: main = do input <- readFile "file.txt" let output = (map toUpper ...
1
vote
1answer
115 views

`interact` using Text instead of String

I'd like to rewrite the interact function, but using Text instead of String. Is it possible to use Data.Text and/or Data.Text.Lazy to accomplish the same behavior as interact? For example, when I run ...
5
votes
2answers
282 views

Lazy output from monadic action

I have the next monad transformer: newtype Pdf' m a = Pdf' { unPdf' :: StateT St (Iteratee ByteString m) a } type Pdf m = ErrorT String (Pdf' m) Basically, it uses underlying Iteratee that ...
1
vote
2answers
192 views

Forcing evaluation on lazy IO

My program reads a line from a network socket and writes it to disc. Since lines can be really long and strings had terrible performance I started using lazy byte strings. Now it seems that Haskell ...