text-show-3.3: Efficient conversion of values into Text

Copyright(C) 2014-2016 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityProvisional
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

TextShow.Data.ByteString

Contents

Description

Monomorphic TextShow functions for data types in the bytestring library.

Since: 2

Synopsis

Documentation

showbByteStringStrict :: ByteString -> Builder Source #

Convert a strict ByteString to a Builder.

Since: 2

showbByteStringLazy :: ByteString -> Builder Source #

Convert a lazy ByteString to a Builder.

Since: 2

showbByteStringLazyPrec :: Int -> ByteString -> Builder Source #

Convert a lazy ByteString to a Builder with the given precedence.

With bytestring-0.10.0.0 or later, this function ignores the precedence argument, since lazy ByteStrings are printed out identically to Strings. On earlier versions of bytestring, however, lazy ByteStrings can be printed with parentheses (e.g., Chunk "example" Empty vs. (Chunk "example" Empty)) depending on the precedence.

Since: 2

Orphan instances