Copyright | Lennart Kolmodin, Ross Paterson |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | Lennart Kolmodin <[email protected]> |
Stability | experimental |
Portability | portable to Hugs and GHC |
Safe Haskell | Safe |
Language | Haskell98 |
Efficient construction of lazy bytestrings.
A Builder
is an efficient way to build lazy ByteString
s. There are several functions for constructing Builder
s, but only one to inspect them: to extract any data, you have to turn them into lazy ByteString
s using toLazyByteString
.
Internally, a Builder
constructs a lazy Bytestring
by filling byte arrays piece by piece. As each buffer is filled, it is 'popped' off, to become a new chunk of the resulting lazy ByteString
. All this is hidden from the user of the Builder
.
toLazyByteString :: Builder -> ByteString Source
O(n). Extract a lazy ByteString
from a Builder
. The construction work takes place if and when the relevant part of the lazy ByteString
is demanded.
O(1). The empty Builder, satisfying
singleton :: Word8 -> Builder Source
O(1). A Builder taking a single byte, satisfying
toLazyByteString
(singleton
b) =singleton
b
append :: Builder -> Builder -> Builder Source
O(1). The concatenation of two Builders, an associative operation with identity empty
, satisfying
toLazyByteString
(append
x y) =append
(toLazyByteString
x) (toLazyByteString
y)
fromByteString :: ByteString -> Builder Source
O(1). A Builder taking a ByteString
, satisfying
toLazyByteString
(fromByteString
bs) =fromChunks
[bs]
fromLazyByteString :: ByteString -> Builder Source
O(1). A Builder taking a lazy ByteString
, satisfying
toLazyByteString
(fromLazyByteString
bs) = bs
O(1). Pop the ByteString
we have constructed so far, if any, yielding a new chunk in the result lazy ByteString
.
putWord16be :: Word16 -> Builder Source
Write a Word16 in big endian format
putWord32be :: Word32 -> Builder Source
Write a Word32 in big endian format
putWord64be :: Word64 -> Builder Source
Write a Word64 in big endian format
putWord16le :: Word16 -> Builder Source
Write a Word16 in little endian format
putWord32le :: Word32 -> Builder Source
Write a Word32 in little endian format
putWord64le :: Word64 -> Builder Source
Write a Word64 in little endian format
putWordhost :: Word -> Builder Source
O(1). A Builder taking a single native machine word. The word is written in host order, host endian form, for the machine you're on. On a 64 bit machine the Word is an 8 byte value, on a 32 bit machine, 4 bytes. Values written this way are not portable to different endian or word sized machines, without conversion.
putWord16host :: Word16 -> Builder Source
Write a Word16 in native host order and host endianness. 2 bytes will be written, unaligned.
putWord32host :: Word32 -> Builder Source
Write a Word32 in native host order and host endianness. 4 bytes will be written, unaligned.
putWord64host :: Word64 -> Builder Source
Write a Word64 in native host order. On a 32 bit machine we write two host order Word32s, in big endian form. 8 bytes will be written, unaligned.
putCharUtf8 :: Char -> Builder Source
Write a character using UTF-8 encoding.
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/7.10.3/docs/html/libraries/binary-0.7.5.0/Data-Binary-Builder.html