text-show-instances-2: 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.Data.Bifunctor

Description

Monomorphic TextShow functions for data types in the bifunctors library.

Since: 2

Synopsis

Documentation

showbBiffPrec :: TextShow (p (f a) (g b)) => Int -> Biff p f g a b -> Builder Source

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

Since: 2

showbBiffPrecWith2 :: (TextShow2 p, TextShow1 f, TextShow1 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Biff p f g a b -> Builder Source

Convert a Biff value to a Builder with the given show functions and precedence.

Since: 2

showbClownPrec :: TextShow (f a) => Int -> Clown f a b -> Builder Source

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

Since: 2

showbClownPrecWith :: TextShow1 f => (Int -> a -> Builder) -> Int -> Clown f a b -> Builder Source

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

Since: 2

showbFlipPrec :: TextShow (p b a) => Int -> Flip p a b -> Builder Source

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

Since: 2

showbFlipPrecWith2 :: TextShow2 p => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Flip p a b -> Builder Source

Convert a Flip value to a Builder with the given show functions and precedence.

Since: 2

showbJoinPrec :: TextShow (p a a) => Int -> Join p a -> Builder Source

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

Since: 2

showbJoinPrecWith :: TextShow2 p => (Int -> a -> Builder) -> Int -> Join p a -> Builder Source

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

Since: 2

showbJokerPrec :: TextShow (g b) => Int -> Joker g a b -> Builder Source

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

Since: 2

showbJokerPrecWith :: TextShow1 g => (Int -> b -> Builder) -> Int -> Joker g a b -> Builder Source

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

Since: 2

showbProductPrec :: (TextShow (f a b), TextShow (g a b)) => Int -> Product f g a b -> Builder Source

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

Since: 2

showbProductPrecWith2 :: (TextShow2 f, TextShow2 g) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Product f g a b -> Builder Source

Convert a Product value to a Builder with the given show functions and precedence.

Since: 2

showbTannenPrec :: TextShow (f (p a b)) => Int -> Tannen f p a b -> Builder Source

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

Since: 2

showbTannenPrecWith2 :: (TextShow1 f, TextShow2 p) => (Int -> a -> Builder) -> (Int -> b -> Builder) -> Int -> Tannen f p a b -> Builder Source

Convert a Tannen value to a Builder with the given show functions and precedence.

Since: 2

showbWrappedBifunctorPrec :: TextShow (p a b) => Int -> WrappedBifunctor p a b -> Builder Source

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

Since: 2

showbWrappedBifunctorPrecWith2 :: TextShow2 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: 2