{-|
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
    , replicateB
    , unlinesB
    , unwordsB
      -- * Printing values
    , print
    , printLazy
    , hPrint
    , hPrintLazy
      -- * @FromStringShow@
    , FromStringShow(..)
    ) where

import Data.Text.Lazy.Builder

import Prelude hiding (Show(show, showList), print)

import Text.Show.Text.Classes
import Text.Show.Text.Instances ()
import Text.Show.Text.Utils (toString, toText, lengthB,
                             replicateB, unlinesB, unwordsB)