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.
showbToShows :: (a -> Builder) -> a -> ShowStext-show TextShow Convert a Builder-based show function to a ShowS-based one. Since: 3
showbToShowt :: (a -> Builder) -> a -> Texttext-show TextShow Convert a Builder-based show function to a strict Text-based one. Since: 3
showbToShowtl :: (a -> Builder) -> a -> Texttext-show TextShow Convert a Builder-based show function to a lazy Text-based one. Since: 3
showbUnaryWith :: (Int -> a -> Builder) -> Builder -> Int -> a -> Buildertext-show TextShow showbUnaryWith sp n p x produces the Builder representation of a unary data constructor with name n and argument x, in precedence context p, using the function sp to show occurrences of the type argument. Since: 2
showsPrecToShowbPrec :: (Int -> a -> ShowS) -> Int -> a -> Buildertext-show TextShow Convert a precedence-aware ShowS-based show function to a Builder-based one. Since: 3
showsToShowb :: (a -> ShowS) -> a -> Buildertext-show TextShow Convert a ShowS-based show function to a Builder-based one. Since: 3
showt :: TextShow a => a -> Texttext-show TextShow Converts a value to a strict Text. This can be overridden for efficiency, but it should satisfy:
showt = showtPrec 0 showt = toStrict . showtl
The first equation is the default definition of showt. Since: 3-
text-show TextShow Construct a strict Text containing a comma followed by a space. Since: 3.6
showtList :: TextShow a => [a] -> Texttext-show TextShow Converts a list of values to a strict Text. This can be overridden for efficiency, but it should satisfy:
showtList = toStrict . showtlList
Since: 3showtParen :: Bool -> Text -> Texttext-show TextShow Surrounds strict Text output with parentheses if the Bool parameter is True. Since: 3.4