text-show-instances-3: 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

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

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

Since: 3

showbIntSetPrec :: Int -> IntSet -> Builder Source

Convert an IntSet to a Builder with the given precedence.

Since: 2

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

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

Since: 3

liftShowbSequencePrec :: ([a] -> Builder) -> Int -> Seq a -> Builder Source

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

Since: 3

liftShowbViewLPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ViewL a -> Builder Source

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

Since: 3

liftShowbViewRPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ViewR a -> Builder Source

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

Since: 3

liftShowbSetPrec :: ([a] -> Builder) -> Int -> Set a -> Builder Source

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

Since: 3

liftShowbTreePrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> Tree a -> Builder Source

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

Since: 3