text-show-3.3: Efficient conversion of values into Text

Copyright(C) 2014-2016 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityProvisional
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

TextShow.Data.Tuple

Contents

Description

Monomorphic TextShow functions for tuple types.

Since: 2

Synopsis

Documentation

showbUnit :: () -> Builder Source #

Converts () into a Builder.

Since: 2

liftShowb2Tuple2 :: (a -> Builder) -> (b -> Builder) -> (a, b) -> Builder Source #

Converts a 2-tuple into a Builder with the given show functions.

Since: 3

liftShowb3Tuple2 :: TextShow a => (b -> Builder) -> (c -> Builder) -> (a, b, c) -> Builder Source #

Converts a 3-tuple into a Builder with the given show functions.

Since: 3

liftShowb4Tuple2 :: (TextShow a, TextShow b) => (c -> Builder) -> (d -> Builder) -> (a, b, c, d) -> Builder Source #

Converts a 4-tuple into a Builder with the given show functions.

Since: 3

liftShowb5Tuple2 :: (TextShow a, TextShow b, TextShow c) => (d -> Builder) -> (e -> Builder) -> (a, b, c, d, e) -> Builder Source #

Converts a 5-tuple into a Builder with the given show functions.

Since: 3

liftShowb6Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d) => (e -> Builder) -> (f -> Builder) -> (a, b, c, d, e, f) -> Builder Source #

Converts a 6-tuple into a Builder with the given show functions.

Since: 3

liftShowb7Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e) => (f -> Builder) -> (g -> Builder) -> (a, b, c, d, e, f, g) -> Builder Source #

Converts a 7-tuple into a Builder with the given show functions.

Since: 3

liftShowb8Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f) => (g -> Builder) -> (h -> Builder) -> (a, b, c, d, e, f, g, h) -> Builder Source #

Converts an 8-tuple into a Builder with the given show functions.

Since: 3

liftShowb9Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g) => (h -> Builder) -> (i -> Builder) -> (a, b, c, d, e, f, g, h, i) -> Builder Source #

Converts a 9-tuple into a Builder with the given show functions.

Since: 3

liftShowb10Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h) => (i -> Builder) -> (j -> Builder) -> (a, b, c, d, e, f, g, h, i, j) -> Builder Source #

Converts a 10-tuple into a Builder with the given show functions.

Since: 3

liftShowb11Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h, TextShow i) => (j -> Builder) -> (k -> Builder) -> (a, b, c, d, e, f, g, h, i, j, k) -> Builder Source #

Converts an 11-tuple into a Builder with the given show functions.

Since: 3

liftShowb12Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h, TextShow i, TextShow j) => (k -> Builder) -> (l -> Builder) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Builder Source #

Converts a 12-tuple into a Builder with the given show functions.

Since: 3

liftShowb13Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h, TextShow i, TextShow j, TextShow k) => (l -> Builder) -> (m -> Builder) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Builder Source #

Converts a 13-tuple into a Builder with the given show functions.

Since: 3

liftShowb14Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h, TextShow i, TextShow j, TextShow k, TextShow l) => (m -> Builder) -> (n -> Builder) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Builder Source #

Converts a 14-tuple into a Builder with the given show functions.

Since: 3

liftShowb15Tuple2 :: (TextShow a, TextShow b, TextShow c, TextShow d, TextShow e, TextShow f, TextShow g, TextShow h, TextShow i, TextShow j, TextShow k, TextShow l, TextShow m) => (n -> Builder) -> (o -> Builder) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Builder Source #

Converts a 15-tuple into a Builder with the given show functions.

Since: 3

Orphan instances

TextShow2 (,) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a, b)] -> Builder Source #

TextShow () Source # 

Methods

showbPrec :: Int -> () -> Builder Source #

showb :: () -> Builder Source #

showbList :: [()] -> Builder Source #

showtPrec :: Int -> () -> Text Source #

showt :: () -> Text Source #

showtList :: [()] -> Text Source #

showtlPrec :: Int -> () -> Text Source #

showtl :: () -> Text Source #

showtlList :: [()] -> Text Source #

TextShow a0 => TextShow2 ((,,) a0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, a, b)] -> Builder Source #

TextShow a0 => TextShow1 ((,) a0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, a)] -> Builder Source #

(TextShow a0, TextShow b0) => TextShow2 ((,,,) a0 b0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0) => TextShow1 ((,,) a0 b0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, a)] -> Builder Source #

(TextShow a0, TextShow b0) => TextShow (a0, b0) Source # 

Methods

showbPrec :: Int -> (a0, b0) -> Builder Source #

showb :: (a0, b0) -> Builder Source #

showbList :: [(a0, b0)] -> Builder Source #

showtPrec :: Int -> (a0, b0) -> Text Source #

showt :: (a0, b0) -> Text Source #

showtList :: [(a0, b0)] -> Text Source #

showtlPrec :: Int -> (a0, b0) -> Text Source #

showtl :: (a0, b0) -> Text Source #

showtlList :: [(a0, b0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0) => TextShow2 ((,,,,) a0 b0 c0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0) => TextShow1 ((,,,) a0 b0 c0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0) => TextShow (a0, b0, c0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0) -> Builder Source #

showb :: (a0, b0, c0) -> Builder Source #

showbList :: [(a0, b0, c0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0) -> Text Source #

showt :: (a0, b0, c0) -> Text Source #

showtList :: [(a0, b0, c0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0) -> Text Source #

showtl :: (a0, b0, c0) -> Text Source #

showtlList :: [(a0, b0, c0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0) => TextShow2 ((,,,,,) a0 b0 c0 d0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0) => TextShow1 ((,,,,) a0 b0 c0 d0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0) => TextShow (a0, b0, c0, d0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0) -> Builder Source #

showb :: (a0, b0, c0, d0) -> Builder Source #

showbList :: [(a0, b0, c0, d0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0) -> Text Source #

showt :: (a0, b0, c0, d0) -> Text Source #

showtList :: [(a0, b0, c0, d0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0) -> Text Source #

showtl :: (a0, b0, c0, d0) -> Text Source #

showtlList :: [(a0, b0, c0, d0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0) => TextShow2 ((,,,,,,) a0 b0 c0 d0 e0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0) => TextShow1 ((,,,,,) a0 b0 c0 d0 e0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0) => TextShow (a0, b0, c0, d0, e0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0) -> Text Source #

showt :: (a0, b0, c0, d0, e0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0) => TextShow2 ((,,,,,,,) a0 b0 c0 d0 e0 f0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0) => TextShow1 ((,,,,,,) a0 b0 c0 d0 e0 f0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0) => TextShow (a0, b0, c0, d0, e0, f0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0) => TextShow2 ((,,,,,,,,) a0 b0 c0 d0 e0 f0 g0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0) => TextShow1 ((,,,,,,,) a0 b0 c0 d0 e0 f0 g0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0) => TextShow (a0, b0, c0, d0, e0, f0, g0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0) => TextShow2 ((,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0) => TextShow1 ((,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0) => TextShow2 ((,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0) => TextShow1 ((,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0) => TextShow2 ((,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0) => TextShow1 ((,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0) => TextShow2 ((,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0) => TextShow1 ((,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0) => TextShow2 ((,,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0) => TextShow1 ((,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0) => TextShow2 ((,,,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0) Source # 

Methods

liftShowbPrec2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, a, b) -> Builder Source #

liftShowbList2 :: (Int -> a -> Builder) -> ([a] -> Builder) -> (Int -> b -> Builder) -> ([b] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, a, b)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0) => TextShow1 ((,,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0, TextShow n0) => TextShow1 ((,,,,,,,,,,,,,,) a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0 n0) Source # 

Methods

liftShowbPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, a) -> Builder Source #

liftShowbList :: (Int -> a -> Builder) -> ([a] -> Builder) -> [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, a)] -> Builder Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0, TextShow n0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0)] -> Text Source #

(TextShow a0, TextShow b0, TextShow c0, TextShow d0, TextShow e0, TextShow f0, TextShow g0, TextShow h0, TextShow i0, TextShow j0, TextShow k0, TextShow l0, TextShow m0, TextShow n0, TextShow o0) => TextShow (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) Source # 

Methods

showbPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Builder Source #

showb :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Builder Source #

showbList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0)] -> Builder Source #

showtPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Text Source #

showt :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Text Source #

showtList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0)] -> Text Source #

showtlPrec :: Int -> (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Text Source #

showtl :: (a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0) -> Text Source #

showtlList :: [(a0, b0, c0, d0, e0, f0, g0, h0, i0, j0, k0, l0, m0, n0, o0)] -> Text Source #