Re: [Haskell-cafe] [Byte8] <-> ByteString

2008-12-23 Thread Duncan Coutts
On Tue, 2008-12-23 at 00:34 -0600, Galchin, Vasili wrote: > Hello, > > I have been reading through Data->ByteString. What is the is > most elegant and efficient way to map/unmap [Byte8] <-> ByteString? Hoogle is your friend! http://haskell.org/hoogle/ [Word8] -> ByteString http://haskell.

Re: [Haskell-cafe] [Byte8] <-> ByteString

2008-12-22 Thread Galchin, Vasili
sorry actually ByteString -> [Word8] On Tue, Dec 23, 2008 at 12:49 AM, Luke Palmer wrote: > 2008/12/22 Galchin, Vasili > >> Hello, >> >> I have been reading through Data->ByteString. What is the is most >> elegant and efficient way to map/unmap [Byte8] <-> ByteString? > > > pack an

Re: [Haskell-cafe] [Byte8] <-> ByteString

2008-12-22 Thread Luke Palmer
2008/12/22 Galchin, Vasili > Hello, > > I have been reading through Data->ByteString. What is the is most > elegant and efficient way to map/unmap [Byte8] <-> ByteString? pack and unpack. You might need a fromIntegral in there, depending on whether Byte8 and Word8 are the same. Luke ___

[Haskell-cafe] [Byte8] <-> ByteString

2008-12-22 Thread Galchin, Vasili
Hello, I have been reading through Data->ByteString. What is the is most elegant and efficient way to map/unmap [Byte8] <-> ByteString? Thanks, Vasili ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/h