text-show-instances-1: Additional instances for text-show

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

Text.Show.Text.Data.Containers

Description

Monomorphic Show functions for data types in the containers library.

Since: 0.1

Synopsis

Documentation

showbIntMapPrecWith :: (v -> Builder) -> Int -> IntMap v -> Builder Source

Convert an IntMap to a Builder with the given show function and precedence.

Since: 1

showbIntSetPrec :: Int -> IntSet -> Builder Source

Convert an IntSet to a Builder with the given precedence.

Since: 0.1

showbMapPrecWith2 :: (k -> Builder) -> (v -> Builder) -> Int -> Map k v -> Builder Source

Convert a Map to a Builder with the given show functions and precedence.

Since: 1

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

Convert a Sequence to a Builder with the given precedence.

Since: 0.1

showbSequencePrecWith :: (a -> Builder) -> Int -> Seq a -> Builder Source

Convert a Sequence to a Builder with the given show function and precedence.

Since: 1

showbViewLPrec :: Show a => Int -> ViewL a -> Builder Source

Convert a ViewL value to a Builder with the given precedence.

Since: 0.1

showbViewLPrecWith :: (a -> Builder) -> Int -> ViewL a -> Builder Source

Convert a ViewL value to a Builder with the given show function and precedence.

Since: 1

showbViewRPrec :: Show a => Int -> ViewR a -> Builder Source

Convert a ViewR value to a Builder with the given precedence.

Since: 0.1

showbViewRPrecWith :: (a -> Builder) -> Int -> ViewR a -> Builder Source

Convert a ViewR value to a Builder with the given show function and precedence.

Since: 1

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

Convert a Set to a Builder with the given precedence.

Since: 0.1

showbSetPrecWith :: (a -> Builder) -> Int -> Set a -> Builder Source

Convert a Set to a Builder with the given show function and precedence.

Since: 1

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

Convert a Tree to a Builder with the given precedence.

Since: 0.1

showbTreePrecWith :: (a -> Builder) -> Int -> Tree a -> Builder Source

Convert a Tree to a Builder with the given show function and precedence.

Since: 1