[Haskell-cafe] Arrays in Clean and Haskell

Jason Dusek jason.dusek at gmail.com
Wed Nov 4 16:22:11 EST 2009


2009/11/4 Philippos Apolinarius <phi500ac at yahoo.ca>
> Jason Dusek wrote:
> > How do you read in the IOUArray? By parsing a character
> > string or do you treat the file as binary numbers or ... ?
>
> I always pare the file. Parsing the file has the advantage of
> alowing me to have files of any format.

  From this description, it's hard for me to see what is hard
  for you. When you "parse the file" I imagine you in face
  "parse a String" or "parse a lazy ByteString" (a much better
  idea). Take that `String` or `ByteString` and pass it to an
  `ST` computation that parses it to make an `ST` array and then
  operates on the array.

--
Jason Dusek


More information about the Haskell-Cafe mailing list