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

Copyright(C) 2014-2015 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityExperimental
PortabilityGHC
Safe HaskellNone
LanguageHaskell98

Text.Show.Text.Data.Text

Description

Monomorphic Show functions for Text types.

Since: 0.3

Synopsis

Documentation

showbText :: Text -> Builder Source

Convert a strict Text into a Builder. showbText should not be confused with fromText, as showbText escapes certain characters (such as double quotes).

Since: 0.5

showbTextLazy :: Text -> Builder Source

Convert a lazy Text into a Builder. showbTextLazy should not be confused with fromTextLazy, as showbTextLazy escapes certain characters (such as double quotes).

Since: 0.3

showbBuilder :: Builder -> Builder Source

Show a Builder as if it were a String (i.e., escape certain characters, such as double quotes).

Since: 0.5