text-show-instances-2.0.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

TextShow.Control.Monad.Trans

Description

Monomorphic TextShow functions for monad transformers.

Since: 2

Synopsis

Documentation

showbErrorTPrecWith :: (TextShow e, TextShow1 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: 2

showbExceptTPrecWith :: (TextShow e, TextShow1 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: 2

showbIdentityTPrecWith :: TextShow1 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: 2

showbListTPrec :: (TextShow1 m, TextShow a) => Int -> ListT m a -> Builder Source

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

Since: 2

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

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

Since: 2

showbMaybeTPrecWith :: TextShow1 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: 2

showbWriterTLazyPrecWith :: (TextShow w, TextShow1 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: 2

showbWriterTStrictPrecWith :: (TextShow w, TextShow1 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: 2