We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a3aeb commit 832ac99Copy full SHA for 832ac99
Data/ByteString/Builder.hs
@@ -171,6 +171,7 @@ module Data.ByteString.Builder
171
(
172
-- * The Builder type
173
Builder
174
+ , ByteStringBuilder
175
176
-- * Executing Builders
177
-- | Internally, 'Builder's are buffer-filling functions. They are
@@ -265,6 +266,8 @@ import Foreign
265
266
import GHC.Base (unpackCString#, unpackCStringUtf8#,
267
unpackFoldrCString#, build)
268
269
+type ByteStringBuilder = Builder
270
+
271
-- | Execute a 'Builder' and return the generated chunks as a 'L.LazyByteString'.
272
-- The work is performed lazy, i.e., only when a chunk of the 'L.LazyByteString'
273
-- is forced.
0 commit comments