| Copyright | (C) 2014-2017 Ryan Scott |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Ryan Scott |
| Stability | Provisional |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell2010 |
TextShow.Data.Functor.Trans
Contents
Description
TextShow instances for functor transformers.
Note that :
- An instance for
Identityis found intext-show, since it is a part ofbase-4.8.0.0and later. - Instances for
Compose,Product, andSumare found intext-show, since they are part ofbase-4.9.0.0and later.
Since: 2
Orphan instances
| TextShow2 (Constant :: * -> * -> *) Source # | Since: 2 |
| TextShow1 f => TextShow1 (Reverse f) Source # | Since: 2 |
| TextShow a => TextShow1 (Constant a :: * -> *) Source # | Since: 2 |
| (TextShow1 f, TextShow a) => TextShow (Reverse f a) Source # | Since: 2 |
Methods showbPrec :: Int -> Reverse f a -> Builder # showb :: Reverse f a -> Builder # showbList :: [Reverse f a] -> Builder # showtPrec :: Int -> Reverse f a -> Text # showt :: Reverse f a -> Text # showtList :: [Reverse f a] -> Text # showtlPrec :: Int -> Reverse f a -> Text # showtl :: Reverse f a -> Text # showtlList :: [Reverse f a] -> Text # | |
| TextShow a => TextShow (Constant a b) Source # | Since: 2 |
Methods showbPrec :: Int -> Constant a b -> Builder # showb :: Constant a b -> Builder # showbList :: [Constant a b] -> Builder # showtPrec :: Int -> Constant a b -> Text # showt :: Constant a b -> Text # showtList :: [Constant a b] -> Text # showtlPrec :: Int -> Constant a b -> Text # showtl :: Constant a b -> Text # showtlList :: [Constant a b] -> Text # | |