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

Description

Monomorphic Show functions for data types in the containers library. These are included for convenience (and because containers is a dependency of this library).

Synopsis

Documentation

showbIntMapPrec :: Show v => Int -> IntMap v -> Builder Source

Convert an IntMap into a Builder with the given precedence.

showbIntSetPrec :: Int -> IntSet -> Builder Source

Convert an IntSet into a Builder with the given precedence.

showbMapPrec :: (Show k, Show v) => Int -> Map k v -> Builder Source

Convert a Map into a Builder with the given precedence.

showbSequencePrec :: Show a => Int -> Seq a -> Builder Source

Convert a Sequence into a Builder with the given precedence.

showbSetPrec :: Show a => Int -> Set a -> Builder Source

Convert a Set into a Builder with the given precedence.

showbTreePrec :: Show a => Int -> Tree a -> Builder Source

Convert a Tree into a Builder with the given precedence.