|
| Text.StringTemplate.Classes |
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
|
|
|
| The StringTemplateShows class should be instantiated for all types that are
directly displayed in a StringTemplate, but take an optional format string. Each such type must have an appropriate ToSElem method defined as well.
| | | Methods | | | Defaults to show.
| | | | Defaults to _ a -> stringTemplateShow a
|
|
|
|
|
| The ToSElem class should be instantiated for all types that can be
inserted as attributes into a StringTemplate.
| | | Methods | |
|
|
|
|
|
|
|
|
|
|
| class Stringable a where | Source |
|
| The Stringable class should be instantiated with care.
Generally, the provided instances should be enough for anything.
| | | Methods | | | | | | | | mconcatMap :: [b] -> (b -> a) -> a | Source |
| | Defaults to mconcatMap m k = foldr (mappend . k) mempty m
| | | mintercalate :: a -> [a] -> a | Source |
| | Defaults to (mconcat .) . intersperse
| | | | Defaults to mlabel x y = smconcat [x, stFromString [, y, stFromString ]]
| | | | Just mempty. Here to avoid orphan instances
| | | | Just mappend. Here to avoid orphan instances
| | | | Just mconcat. Here to avoid orphan instances
|
|
|
|
|
| This method should be used to create ToSElem instances for
types defining a custom formatted show function.
|
|
| Produced by Haddock version 2.6.0 |