Copyright | (C) 2014-2017 Ryan Scott |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Ryan Scott |
Stability | Provisional |
Portability | GHC |
Safe Haskell | None |
Language | Haskell2010 |
TextShow.Data.Containers
Contents
Description
Monomorphic TextShow
functions for data types in the containers
library.
Since: 2
- liftShowbIntMapPrec :: (v -> Builder) -> Int -> IntMap v -> Builder
- showbIntSetPrec :: Int -> IntSet -> Builder
- liftShowbMapPrec2 :: (k -> Builder) -> (v -> Builder) -> Int -> Map k v -> Builder
- liftShowbSCCPrec :: (Int -> vertex -> Builder) -> ([vertex] -> Builder) -> Int -> SCC vertex -> Builder
- liftShowbSequencePrec :: ([a] -> Builder) -> Int -> Seq a -> Builder
- liftShowbViewLPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ViewL a -> Builder
- liftShowbViewRPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ViewR a -> Builder
- liftShowbSetPrec :: ([a] -> Builder) -> Int -> Set a -> Builder
- liftShowbTreePrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> Tree a -> Builder
Documentation
liftShowbSCCPrec :: (Int -> vertex -> Builder) -> ([vertex] -> Builder) -> Int -> SCC vertex -> Builder Source #
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 #
liftShowbViewRPrec :: (Int -> a -> Builder) -> ([a] -> Builder) -> Int -> ViewR a -> Builder Source #
Orphan instances
TextShow IntSet Source # | |
TextShow1 SCC Source # | |
TextShow1 IntMap Source # | |
TextShow1 Tree Source # | |
TextShow1 Seq Source # | |
TextShow1 ViewL Source # | |
TextShow1 ViewR Source # | |
TextShow1 Set Source # | |
TextShow2 Map Source # | |
TextShow vertex0 => TextShow (SCC vertex0) Source # | |
TextShow v => TextShow (IntMap v) Source # | |
TextShow a0 => TextShow (Tree a0) Source # | |
TextShow a => TextShow (Seq a) Source # | |
TextShow a0 => TextShow (ViewL a0) Source # | |
TextShow a0 => TextShow (ViewR a0) Source # | |
TextShow a => TextShow (Set a) Source # | |
TextShow k => TextShow1 (Map k) Source # | |
(TextShow k, TextShow v) => TextShow (Map k v) Source # | |