| Copyright | (C) 2014-2016 Ryan Scott |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Ryan Scott |
| Stability | Provisional |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell2010 |
TextShow.Control.Monad.Trans
Contents
Description
Monomorphic TextShow functions for monad transformers.
Since: 2
- liftShowbErrorTPrec :: (TextShow e, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ErrorT e m a -> Builder
- liftShowbExceptTPrec :: (TextShow e, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ExceptT e m a -> Builder
- liftShowbIdentityTPrec :: TextShow1 f => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> IdentityT f a -> Builder
- liftShowbListTPrec :: TextShow1 m => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ListT m a -> Builder
- liftShowbMaybeTPrec :: TextShow1 m => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> MaybeT m a -> Builder
- liftShowbWriterTLazyPrec :: (TextShow w, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> WriterT w m a -> Builder
- liftShowbWriterTStrictPrec :: (TextShow w, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> WriterT w m a -> Builder
Documentation
liftShowbErrorTPrec :: (TextShow e, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ErrorT e m a -> Builder Source #
liftShowbExceptTPrec :: (TextShow e, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ExceptT e m a -> Builder Source #
liftShowbIdentityTPrec :: TextShow1 f => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> IdentityT f a -> Builder Source #
liftShowbListTPrec :: TextShow1 m => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ListT m a -> Builder Source #
liftShowbMaybeTPrec :: TextShow1 m => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> MaybeT m a -> Builder Source #
liftShowbWriterTLazyPrec :: (TextShow w, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> WriterT w m a -> Builder Source #
liftShowbWriterTStrictPrec :: (TextShow w, TextShow1 m) => (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> WriterT w m a -> Builder Source #
Orphan instances
| TextShow1 m => TextShow1 (MaybeT m) Source # | |
| TextShow1 m => TextShow1 (ListT m) Source # | |
| (TextShow1 m, TextShow a) => TextShow (MaybeT m a) Source # | |
| (TextShow1 m, TextShow a) => TextShow (ListT m a) Source # | |
| TextShow1 f => TextShow1 (IdentityT * f) Source # | |
| (TextShow w, TextShow1 m) => TextShow1 (WriterT w m) Source # | |
| (TextShow w, TextShow1 m) => TextShow1 (WriterT w m) Source # | |
| (TextShow e, TextShow1 m) => TextShow1 (ErrorT e m) Source # | |
| (TextShow e, TextShow1 m) => TextShow1 (ExceptT e m) Source # | |
| (TextShow1 f, TextShow a) => TextShow (IdentityT * f a) Source # | |
| (TextShow w, TextShow1 m, TextShow a) => TextShow (WriterT w m a) Source # | |
| (TextShow w, TextShow1 m, TextShow a) => TextShow (WriterT w m a) Source # | |
| (TextShow e, TextShow1 m, TextShow a) => TextShow (ErrorT e m a) Source # | |
| (TextShow e, TextShow1 m, TextShow a) => TextShow (ExceptT e m a) Source # | |