|
Data.Binary.Put | Portability | Portable to Hugs and GHC. Requires MPTCs | Stability | stable | Maintainer | Lennart Kolmodin <kolmodin@dtek.chalmers.se> |
|
|
|
|
|
Description |
The Put monad. A monad for efficiently constructing lazy bytestrings.
|
|
Synopsis |
|
|
|
|
The Put type
|
|
|
Put merely lifts Builder into a Writer monad, applied to ().
|
|
|
The PutM type. A Writer monad over the efficient Builder monoid.
| Constructors | | Instances | |
|
|
|
Run the Put monad with a serialiser
|
|
|
Run the Put monad with a serialiser and get its result
|
|
|
|
|
Run the Put monad
|
|
Flushing the implicit parse state
|
|
|
Pop the ByteString we have constructed so far, if any, yielding a
new chunk in the result ByteString.
|
|
Primitives
|
|
|
Efficiently write a byte into the output buffer
|
|
|
An efficient primitive to write a strict ByteString into the output buffer.
It flushes the current buffer, and writes the argument into a new chunk.
|
|
|
Write a lazy ByteString efficiently, simply appending the lazy
ByteString chunks to the output buffer
|
|
Big-endian primitives
|
|
|
Write a Word16 in big endian format
|
|
|
Write a Word32 in big endian format
|
|
|
Write a Word64 in big endian format
|
|
Little-endian primitives
|
|
|
Write a Word16 in little endian format
|
|
|
Write a Word32 in little endian format
|
|
|
Write a Word64 in little endian format
|
|
Host-endian, unaligned writes
|
|
|
O(1). Write 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.
|
|
|
O(1). Write a Word16 in native host order and host endianness.
For portability issues see putWordhost.
|
|
|
O(1). Write a Word32 in native host order and host endianness.
For portability issues see putWordhost.
|
|
|
O(1). Write a Word64 in native host order
On a 32 bit machine we write two host order Word32s, in big endian form.
For portability issues see putWordhost.
|
|
Produced by Haddock version 2.6.1 |