| Copyright | (C) 2014-2015 Ryan Scott |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Ryan Scott |
| Stability | Provisional |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell2010 |
TextShow.Data.Containers
Description
Monomorphic TextShow functions for data types in the containers library.
Since: 2
- showbIntMapPrecWith :: (v -> Builder) -> Int -> IntMap v -> Builder
- showbIntSetPrec :: Int -> IntSet -> Builder
- showbMapPrecWith2 :: (k -> Builder) -> (v -> Builder) -> Int -> Map k v -> Builder
- showbSequencePrec :: TextShow a => Int -> Seq a -> Builder
- showbSequencePrecWith :: (a -> Builder) -> Int -> Seq a -> Builder
- showbViewLPrec :: TextShow a => Int -> ViewL a -> Builder
- showbViewLPrecWith :: (a -> Builder) -> Int -> ViewL a -> Builder
- showbViewRPrec :: TextShow a => Int -> ViewR a -> Builder
- showbViewRPrecWith :: (a -> Builder) -> Int -> ViewR a -> Builder
- showbSetPrec :: TextShow a => Int -> Set a -> Builder
- showbSetPrecWith :: (a -> Builder) -> Int -> Set a -> Builder
- showbTreePrec :: TextShow a => Int -> Tree a -> Builder
- showbTreePrecWith :: (a -> Builder) -> Int -> Tree a -> Builder
Documentation
showbIntSetPrec :: Int -> IntSet -> Builder Source
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