diff options
author | tv <tv@krebsco.de> | 2019-02-07 18:42:36 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-02-07 18:54:59 +0100 |
commit | fb5636483871fbafe9b286b377c339c8ddf8b4f8 (patch) | |
tree | 5016d6b38bff4b13856828ee385aaf7498d8e344 /src/Data |
initial commitv1.0.0-rc1
Diffstat (limited to 'src/Data')
-rw-r--r-- | src/Data/Text/Extended.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Data/Text/Extended.hs b/src/Data/Text/Extended.hs new file mode 100644 index 0000000..70eef63 --- /dev/null +++ b/src/Data/Text/Extended.hs @@ -0,0 +1,12 @@ +{-# OPTIONS_GHC -fno-warn-orphans #-} +module Data.Text.Extended + ( module Data.Text + , show + ) where + +import Data.Text +import Prelude hiding (show) +import qualified Prelude + +show :: Show a => a -> Text +show = pack . Prelude.show |