text-show-3.11: src/TextShow/TH.hs
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-|
Module: TextShow.TH
Copyright: (C) 2014-2017 Ryan Scott
License: BSD-style (see the file LICENSE)
Maintainer: Ryan Scott
Stability: Provisional
Portability: GHC
Functions to mechanically derive 'TextShow', 'TextShow1', or 'TextShow2' instances,
or to splice @show@-related expressions into Haskell source code. You need to enable
the @TemplateHaskell@ language extension in order to use this module.
/Since: 2/
-}
module TextShow.TH (module TextShow.TH.Internal) where
import TextShow.Instances ()
import TextShow.TH.Internal
-------------------------------------------------------------------------------
$(deriveTextShow ''GenTextMethods)
$(deriveTextShow ''Options)