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.Integral

Description

Monomorphic Show functions for integral types.

Since: 0.3

Synopsis

Documentation

showbIntPrec :: Int -> Int -> Builder Source

Convert an Int to a Builder with the given precedence.

Since: 0.3

showbInt8Prec :: Int -> Int8 -> Builder Source

Convert an Int8 to a Builder with the given precedence.

Since: 0.3

showbInt16Prec :: Int -> Int16 -> Builder Source

Convert an Int16 to a Builder with the given precedence.

Since: 0.3

showbInt32Prec :: Int -> Int32 -> Builder Source

Convert an Int32 to a Builder with the given precedence.

Since: 0.3

showbInt64Prec :: Int -> Int64 -> Builder Source

Convert an Int64 to a Builder with the given precedence.

Since: 0.3

showbIntegerPrec :: Int -> Integer -> Builder Source

Convert an Integer to a Builder with the given precedence.

Since: 0.3

showbIntegralPrec :: Integral a => Int -> a -> Builder Source

Convert an Integral type to a Builder with the given precedence.

Since: 0.3

showbIntAtBase :: (Integral a, Show a) => a -> (Int -> Char) -> a -> Builder Source

Shows a non-negative Integral number using the base specified by the first argument, and the character representation specified by the second.

Since: 0.3

showbBin :: (Integral a, Show a) => a -> Builder Source

Show non-negative Integral numbers in base 2.

Since: 0.3

showbHex :: (Integral a, Show a) => a -> Builder Source

Show non-negative Integral numbers in base 16.

Since: 0.3

showbOct :: (Integral a, Show a) => a -> Builder Source

Show non-negative Integral numbers in base 8.

Since: 0.3

showbWord :: Word -> Builder Source

Convert a Word to a Builder with the given precedence.

Since: 0.3

showbWord8 :: Word8 -> Builder Source

Convert a Word8 to a Builder with the given precedence.

Since: 0.3

showbWord16 :: Word16 -> Builder Source

Convert a Word16 to a Builder with the given precedence.

Since: 0.3

showbWord32 :: Word32 -> Builder Source

Convert a Word32 to a Builder with the given precedence.

Since: 0.3

showbWord64 :: Word64 -> Builder Source

Convert a Word64 to a Builder with the given precedence.

Since: 0.3