binary-0.8.3.0: Binary serialisation for Haskell values using lazy ByteStrings

CopyrightLennart Kolmodin, Ross Paterson
LicenseBSD3-style (see LICENSE)
MaintainerLennart Kolmodin <kolmodin@gmail.com>
Stabilityexperimental
Portabilityportable to Hugs and GHC
Safe HaskellSafe
LanguageHaskell98

Data.Binary.Builder

Contents

Description

Efficient constructions of lazy bytestrings.

This now re-exports Builder.

Synopsis

The Builder type

data Builder :: * #

Builders denote sequences of bytes. They are Monoids where mempty is the zero-length sequence and mappend is concatenation, which runs in O(1).

Instances

Semigroup Builder 

Methods