| Copyright | (C) 2014-2015 Ryan Scott |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Ryan Scott |
| Stability | Provisional |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell2010 |
Text.Show.Text.Data.Bifunctor
Description
Monomorphic Show functions for data types in the bifunctors library.
Since: 1
- showbBiffPrec :: Show (p (f a) (g b)) => Int -> Biff p f g a b -> Builder
- showbBiffPrecWith2 :: (Show2 p, Show1 f, Show1 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Biff p f g a b -> Builder
- showbClownPrec :: Show (f a) => Int -> Clown f a b -> Builder
- showbClownPrecWith :: Show1 f => (Int -> a -> Builder) -> Int -> Clown f a b -> Builder
- showbFlipPrec :: Show (p b a) => Int -> Flip p a b -> Builder
- showbFlipPrecWith2 :: Show2 p => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Flip p a b -> Builder
- showbJoinPrec :: Show (p a a) => Int -> Join p a -> Builder
- showbJoinPrecWith :: Show2 p => (Int -> a -> Builder) -> Int -> Join p a -> Builder
- showbJokerPrec :: Show (g b) => Int -> Joker g a b -> Builder
- showbJokerPrecWith :: Show1 g => (Int -> b -> Builder) -> Int -> Joker g a b -> Builder
- showbProductPrec :: (Show (f a b), Show (g a b)) => Int -> Product f g a b -> Builder
- showbProductPrecWith2 :: (Show2 f, Show2 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Product f g a b -> Builder
- showbTannenPrec :: Show (f (p a b)) => Int -> Tannen f p a b -> Builder
- showbTannenPrecWith2 :: (Show1 f, Show2 p) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Tannen f p a b -> Builder
- showbWrappedBifunctorPrec :: Show (p a b) => Int -> WrappedBifunctor p a b -> Builder
- showbWrappedBifunctorPrecWith2 :: Show2 p => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> WrappedBifunctor p a b -> Builder
Documentation
showbBiffPrecWith2 :: (Show2 p, Show1 f, Show1 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Biff p f g a b -> Builder Source
showbFlipPrecWith2 :: Show2 p => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Flip p a b -> Builder Source
showbProductPrecWith2 :: (Show2 f, Show2 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Product f g a b -> Builder Source
showbTannenPrecWith2 :: (Show1 f, Show2 p) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Tannen f p a b -> Builder Source
showbWrappedBifunctorPrec :: Show (p a b) => Int -> WrappedBifunctor p a b -> Builder Source
Convert a WrappedBifunctor value to a Builder with the given precedence.
Since: 1
showbWrappedBifunctorPrecWith2 :: Show2 p => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> WrappedBifunctor p a b -> Builder Source
Convert a WrappedBifunctor value to a Builder with the given show functions
and precedence.
Since: 1