Hoogle Search
Within LTS Haskell 24.19 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
text-show TextShow Construct a Builder containing a comma followed by a space. Since: 3.6
showbList :: TextShow a => [a] -> Buildertext-show TextShow Converts a list of values to a Builder. By default, this is defined as 'showbList = showbListWith showb, but it can be overridden to allow for specialized displaying of lists (e.g., lists of Chars). Since: 2
showbParen :: Bool -> Builder -> Buildertext-show TextShow Surrounds Builder output with parentheses if the Bool parameter is True. Since: 2
showbPrec :: TextShow a => Int -> a -> Buildertext-show TextShow Convert a value to a Builder with the given predence. Since: 2
showbPrec1 :: (TextShow1 f, TextShow a) => Int -> f a -> Buildertext-show TextShow Lift the standard showbPrec and showbList functions through the type constructor. Since: 2
showbPrec2 :: (TextShow2 f, TextShow a, TextShow b) => Int -> f a b -> Buildertext-show TextShow Lift two showbPrec functions through the type constructor. Since: 2
showbPrecToShowsPrec :: (Int -> a -> Builder) -> Int -> a -> ShowStext-show TextShow Convert a precedence-aware Builder-based show function to a ShowS-based one. Since: 3
showbPrecToShowtPrec :: (Int -> a -> Builder) -> Int -> a -> Texttext-show TextShow Convert a precedence-aware Builder-based show function to a strict Text-based one. Since: 3.4
showbPrecToShowtlPrec :: (Int -> a -> Builder) -> Int -> a -> Texttext-show TextShow Convert a precedence-aware Builder-based show function to a lazy Text-based one. Since: 3.4
-
text-show TextShow Construct a Builder containing a single space character. Since: 2