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

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

Text.Show.Text.Data.Tuple

Description

Monomorphic Show functions for tuple types.

Since: 0.3

Synopsis

Documentation

showbUnit :: () -> Builder Source

Converts () into a Builder.

Since: 0.3

showb2TupleWith2 :: (a -> Builder) -> (b -> Builder) -> (a, b) -> Builder Source

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

Since: 1

showb3TupleWith2 :: Show a => (b -> Builder) -> (c -> Builder) -> (a, b, c) -> Builder Source

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

Since: 1

showb4TupleWith2 :: (Show a, Show b) => (c -> Builder) -> (d -> Builder) -> (a, b, c, d) -> Builder Source

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

Since: 1

showb5TupleWith2 :: (Show a, Show b, Show 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: 1

showb6TupleWith2 :: (Show a, Show b, Show c, Show 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: 1

showb7TupleWith2 :: (Show a, Show b, Show c, Show d, Show 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: 1

showb8TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show 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: 1

showb9TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show 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: 1

showb10TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show 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: 1

showb11TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show 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: 1

showb12TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show 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: 1

showb13TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show 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: 1

showb14TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show 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: 1

showb15TupleWith2 :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show l, Show 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: 1