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 |
Monomorphic TextShow
functions for generics-related data types.
Since: 2
- showbU1 :: U1 p -> Builder
- showbPar1PrecWith :: (Int -> p -> Builder) -> Int -> Par1 p -> Builder
- showbRec1Prec :: TextShow (f p) => Int -> Rec1 f p -> Builder
- showbRec1PrecWith :: TextShow1 f => (Int -> p -> Builder) -> Int -> Rec1 f p -> Builder
- showbK1PrecWith :: (Int -> c -> Builder) -> Int -> K1 i c p -> Builder
- showbM1Prec :: TextShow (f p) => Int -> M1 i c f p -> Builder
- showbM1PrecWith :: TextShow1 f => (Int -> p -> Builder) -> Int -> M1 i c f p -> Builder
- showbSumTypePrec :: (TextShow (f p), TextShow (g p)) => Int -> (f :+: g) p -> Builder
- showbSumTypePrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :+: g) p -> Builder
- showbProductTypePrec :: (TextShow (f p), TextShow (g p)) => Int -> (f :*: g) p -> Builder
- showbProductTypePrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :*: g) p -> Builder
- showbCompFunctorsPrec :: TextShow (f (g p)) => Int -> (f :.: g) p -> Builder
- showbCompFunctorsPrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :.: g) p -> Builder
- showbFixityPrec :: Int -> Fixity -> Builder
- showbAssociativity :: Associativity -> Builder
- showbArityPrec :: Int -> Arity -> Builder
Documentation
showbSumTypePrec :: (TextShow (f p), TextShow (g p)) => Int -> (f :+: g) p -> Builder Source
Convert a '(:+:)' value to a Builder
with the given precedence.
Since: 2
showbSumTypePrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :+: g) p -> Builder Source
Convert a '(:+:)' value to a Builder
with the given show function and precedence.
Since: 2
showbProductTypePrec :: (TextShow (f p), TextShow (g p)) => Int -> (f :*: g) p -> Builder Source
Convert a '(:*:)' value to a Builder
with the given precedence.
Since: 2
showbProductTypePrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :*: g) p -> Builder Source
Convert a '(:*:)' value to a Builder
with the given show function and precedence.
Since: 2
showbCompFunctorsPrec :: TextShow (f (g p)) => Int -> (f :.: g) p -> Builder Source
Convert a '(:.:)' value to a Builder
with the given precedence.
Since: 2
showbCompFunctorsPrecWith :: (TextShow1 f, TextShow1 g) => (Int -> p -> Builder) -> Int -> (f :.: g) p -> Builder Source
Convert a '(:.:)' value to a Builder
with the given show function and precedence.
This function is only available with base-4.4.0.0
or later.
Since: 2
showbFixityPrec :: Int -> Fixity -> Builder Source
showbAssociativity :: Associativity -> Builder Source
Convert an Associativity
value to a Builder
.
This function is only available with base-4.4.0.0
or later.
Since: 2