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

Copyright(C) 2014 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityExperimental
PortabilityGHC
Safe HaskellNone
LanguageHaskell98

Text.Show.Text.Data.Tuple

Description

Monomorphic Show functions for tuple types.

Synopsis

Documentation

showbUnit :: () -> Builder Source

Converts () into a Builder.

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

Converts a 2-tuple into a Builder.

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

Converts a 3-tuple into a Builder.

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

Converts a 4-tuple into a Builder.

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

Converts a 5-tuple into a Builder.

showb6Tuple :: (Show a, Show b, Show c, Show d, Show e, Show f) => (a, b, c, d, e, f) -> Builder Source

Converts a 6-tuple into a Builder.

showb7Tuple :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g) => (a, b, c, d, e, f, g) -> Builder Source

Converts a 7-tuple into a Builder.

showb8Tuple :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h) => (a, b, c, d, e, f, g, h) -> Builder Source

Converts an 8-tuple into a Builder.

showb9Tuple :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i) => (a, b, c, d, e, f, g, h, i) -> Builder Source

Converts a 9-tuple into a Builder.

showb10Tuple :: (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j) => (a, b, c, d, e, f, g, h, i, j) -> Builder Source

Converts a 10-tuple into a Builder.

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

Converts an 11-tuple into a Builder.

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

Converts a 12-tuple into a Builder.

showb13Tuple :: (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) => (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Builder Source

Converts a 13-tuple into a Builder.

showb14Tuple :: (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, Show n) => (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Builder Source

Converts a 14-tuple into a Builder.

showb15Tuple :: (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, Show n, Show o) => (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Builder Source

Converts a 15-tuple into a Builder.