text-show-instances-1: Additional instances for text-show

Copyright(C) 2014-2015 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityProvisional
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

Text.Show.Text.Control.Monad.Trans

Description

Monomorphic Show functions for monad transformers.

Since: 0.1

Synopsis

Documentation

showbErrorTPrecWith :: (Show e, Show1 m) => (Int -> a -> Builder) -> Int -> ErrorT e m a -> Builder Source

Convert an ErrorT value to a Builder with the given show function and precedence.

Since: 1

showbExceptTPrecWith :: (Show e, Show1 m) => (Int -> a -> Builder) -> Int -> ExceptT e m a -> Builder Source

Convert an ExceptT value to a Builder with the given show function and precedence.

Since: 1

showbIdentityTPrecWith :: Show1 f => (Int -> a -> Builder) -> Int -> IdentityT f a -> Builder Source

Convert an IdentityT value to a Builder with the given show function and precedence.

Since: 1

showbListTPrec :: (Show1 m, Show a) => Int -> ListT m a -> Builder Source

Convert a ListT value to a Builder with the given precedence.

Since: 0.1

showbListTPrecWith :: Show1 m => (a -> Builder) -> Int -> ListT m a -> Builder Source

Convert a ListT value to a Builder with the given show function and precedence.

Since: 1

showbMaybeTPrecWith :: Show1 m => (Int -> a -> Builder) -> Int -> MaybeT m a -> Builder Source

Convert a MaybeT value to a Builder with the given show function and precedence.

Since: 1

showbWriterTLazyPrecWith :: (Show w, Show1 m) => (a -> Builder) -> Int -> WriterT w m a -> Builder Source

Convert a lazy WriterT value to a Builder with the given show function and precedence.

Since: 1

showbWriterTStrictPrecWith :: (Show w, Show1 m) => (a -> Builder) -> Int -> WriterT w m a -> Builder Source

Convert a strict WriterT value to a Builder with the given show function and precedence.

Since: 1