Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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
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