text-show-instances-2.0.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

TextShow.Data.Containers

Description

Monomorphic TextShow functions for data types in the containers library.

Since: 2

Synopsis

Documentation

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

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

Since: 2

showbIntSetPrec :: Int -> IntSet -> Builder Source

Convert an IntSet to a Builder with the given precedence.

Since: 2

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: 2

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

Convert a Sequence to a Builder with the given precedence.

Since: 2

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

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

Since: 2

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

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

Since: 2

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

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

Since: 2

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

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

Since: 2

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

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

Since: 2

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

Convert a Set to a Builder with the given precedence.

Since: 2

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

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

Since: 2

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

Convert a Tree to a Builder with the given precedence.

Since: 2

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

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

Since: 2