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 |
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
- 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
showbIntSetPrec :: Int -> IntSet -> 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