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

Copyright(C) 2014-2015 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityExperimental
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

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

Converts a 2-tuple into a Builder.

Since: 0.3

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

Converts a 3-tuple into a Builder.

Since: 0.3

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

Converts a 4-tuple into a Builder.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3

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.

Since: 0.3