commit a6f62265f345c8b7a7226515171752586b0d66e5 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 13:41:05 2016 -0400 bump version commit 1a809623cd1484ce215612e6b3ecef15015bc602 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 13:26:11 2016 -0400 masking for ghc 8.0 specific type commit 54bafb0bb80c8450863eac53a1f3a20a21c8b0c9 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:55:08 2016 -0400 bump ghc-prim for GHC 8.0 compat commit 8808d5f37369107b3e5961255089a8a9e02bf3d5 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:53:39 2016 -0400 expose base State transformers commit 05c32a4542aa66f715aea3855e140f74e97d4852 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:46:00 2016 -0400 adds compiler-independent base module
60 lines
1.4 KiB
Haskell
60 lines
1.4 KiB
Haskell
{-# LANGUAGE Trustworthy #-}
|
|
{-# LANGUAGE FlexibleContexts #-}
|
|
{-# LANGUAGE FlexibleInstances #-}
|
|
{-# LANGUAGE NoImplicitPrelude #-}
|
|
{-# LANGUAGE TypeSynonymInstances #-}
|
|
{-# LANGUAGE ExtendedDefaultRules #-}
|
|
|
|
module Show (
|
|
Print(..),
|
|
putText,
|
|
putLText,
|
|
) where
|
|
|
|
import qualified Base
|
|
import Data.Function ((.))
|
|
|
|
import Control.Monad.IO.Class (MonadIO, liftIO)
|
|
import qualified Data.ByteString.Char8 as BS
|
|
import qualified Data.ByteString.Lazy.Char8 as BL
|
|
|
|
import qualified Data.Text as T
|
|
import qualified Data.Text.IO as T
|
|
|
|
import qualified Data.Text.Lazy as TL
|
|
import qualified Data.Text.Lazy.IO as TL
|
|
|
|
|
|
class Print a where
|
|
putStr :: MonadIO m => a -> m ()
|
|
putStrLn :: MonadIO m => a -> m ()
|
|
|
|
instance Print T.Text where
|
|
putStr = liftIO . T.putStr
|
|
putStrLn = liftIO . T.putStrLn
|
|
|
|
instance Print TL.Text where
|
|
putStr = liftIO . TL.putStr
|
|
putStrLn = liftIO . TL.putStrLn
|
|
|
|
instance Print BS.ByteString where
|
|
putStr = liftIO . BS.putStr
|
|
putStrLn = liftIO . BS.putStrLn
|
|
|
|
instance Print BL.ByteString where
|
|
putStr = liftIO . BL.putStr
|
|
putStrLn = liftIO . BL.putStrLn
|
|
|
|
instance Print [Base.Char] where
|
|
putStr = liftIO . Base.putStr
|
|
putStrLn = liftIO . Base.putStrLn
|
|
|
|
-- For forcing type inference
|
|
putText :: MonadIO m => T.Text -> m ()
|
|
putText = putStrLn
|
|
{-# SPECIALIZE putText :: T.Text -> Base.IO () #-}
|
|
|
|
putLText :: MonadIO m => TL.Text -> m ()
|
|
putLText = putStrLn
|
|
{-# SPECIALIZE putLText :: TL.Text -> Base.IO () #-}
|