Tagged Questions
7
votes
2answers
295 views
How to parse a 7GB file, with Data.ByteString?
I have to parse a file, and indeed a have to read it first, here is my program :
import qualified Data.ByteString.Char8 as B
import System.Environment
main = do
args <- getArgs
let ...
1
vote
2answers
122 views
How do I convert a ByteString to an appropriately sized Word?
Basically I've read in 5 bytes that correspond to a quantity, but I would like to convert it to a Word64. What's the best way to do this?
Edit: I should also say that this is run in an inner loop so ...
2
votes
1answer
257 views
parser for Data.ByteString.Lazy.Char8 in Haskell?
Hi
i'm facing the following problem, i have to re-write an existant code to improve his performances. the old version was using a parser defined like this :
newtype Parser Char a = Parser {runParser ...
1
vote
1answer
544 views
Haskell Convert ByteString To UTC Time
I have been trying to make a function in Haskell to take a ByteString which is a datetime and convert it to UTC time taking into account the time zone from the original encoding. I am very new to ...
1
vote
2answers
571 views
ByteStrings in Haskell
So i am trying to write a program that can read in a java class file as bytecode. For this i am using Data.Binary and Data.ByteStream. The problem i am having is because im pretty new to Haskell i am ...
