A time and space-efficient implementation of byte vectors for Haskell.
2
votes
3answers
1k views
How do I convert a 24-bit integer into a 3-byte array?
Hey Im totally out of my depth and my brain is starting to hurt.. :(
I need to covert an integer so that it will fit in a 3 byte array.(is that a 24bit int?) and then back again to send/receive this ...
13
votes
2answers
1k views
Haskell Lazy ByteString + read/write progress function
I am learing Haskell Lazy IO.
I am looking for an elegant way to copy a large file (8Gb) while printing copy progress to console.
Consider the following simple program that copies a file silently.
...
16
votes
1answer
980 views
Reading large file in haskell?
i've been trying to read a large file in haskell.
I need to compress it using a custom algorithm for a university project. Everything works fine untill i start to compress big files.
I extracted ...
8
votes
4answers
179 views
Making a single function work on lists, ByteStrings and Texts (and perhaps other similar representations)
I'm writing a function that does some searching in a sequence of arbitrary symbols. I'd like to make it generic enough so that it works on lists, Foldables as well on ByteStrings and Texts. ...
10
votes
4answers
2k views
Using Haskell to output a UTF-8-encoded ByteString
I'm going out of my mind trying to simply output UTF-8-encoded data to the console.
I've managed to accomplish this using String, but now I'd like to do the same with ByteString. Is there a nice and ...
8
votes
4answers
585 views
In Haskell, will calling length on a Lazy ByteString force the entire string into memory?
I am reading a large data stream using lazy bytestrings, and want to know if at least X more bytes is available while parsing it. That is, I want to know if the bytestring is at least X bytes long.
...
1
vote
2answers
133 views
Where is Network.Socket.ByteString.Lazy's sendTo?
Both Network.Socket.ByteString and Network.Socket.ByteString.Lazy have a send function.
Network.Socket.ByteString has a sendTo function, but Network.Socket.ByteString.Lazy doesn't.
How can I use ...
13
votes
1answer
183 views
Purity of functions generating ByteString (or any object with ForeignPtr component)
Since a ByteString is a constructor with ForeignPtr:
data ByteString = PS {-# UNPACK #-} !(ForeignPtr Word8) -- payload
{-# UNPACK #-} !Int -- offset
...
5
votes
1answer
256 views
Is it possible to use Text or ByteString on HXT in Haskell?
I think HXT, a XML/HTML processing library in Haskell, has really flexible and powerful methods for traversing and manipulating DOM trees by Arrows.
...
2
votes
2answers
9k views
vb.net - Encode string to UTF-8
I've made a class to encode a string
Public Class UTF8
Public Shared Function encode(ByVal str As String)
Dim utf8Encoding As New System.Text.UTF8Encoding
Dim encodedString() As ...
1
vote
2answers
110 views
How to force strict evaluation of a sequence of ByteString
I have the following Haskell type definition:
import Data.Sequence(Seq, length)
import Data.ByteString.UTF8(ByteString)
type StringSeq = Seq ByteString
I have expressions of type StringSeq for ...
1
vote
1answer
1k views
Convert Byte String to Int in Scheme
I have code like this to convert hex into byte string
(define (word->bin s)
(let ((n (string->number s)))
(bytes (bitwise-and (arithmetic-shift n -24) #xFF)
(bitwise-and ...