text-show-0.8: src/Text/Show/Text.hs
{-|
Module: Text.Show.Text
Copyright: (C) 2014-2015 Ryan Scott
License: BSD-style (see the file LICENSE)
Maintainer: Ryan Scott
Stability: Experimental
Portability: GHC
Efficiently convert from values to 'Text' via 'Builder's.
/Since: 0.1/
-}
module Text.Show.Text (
-- * The 'Show' class
Show(..)
, show
, showLazy
, showPrec
, showPrecLazy
, showList
, showListLazy
, showbParen
, showbSpace
, showbUnary
, Show1(..)
, showbUnary1
, showbBinary1
-- * 'Builder's
, module Data.Text.Lazy.Builder
, toString
, toText
, lengthB
, unlinesB
, unwordsB
-- * Printing values
, print
, printLazy
, hPrint
, hPrintLazy
-- * Conversion between @String@ and @Text@ 'Show'
, FromStringShow(..)
, FromTextShow(..)
) where
import Data.Text.Lazy.Builder
import Prelude ()
import Text.Show.Text.Classes
import Text.Show.Text.Instances ()
import Text.Show.Text.Utils (toString, toText, lengthB,
unlinesB, unwordsB)