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.
fromHtmlEscapedShow :: Show a => a -> Builderblaze-builder Blaze.ByteString.Builder.Html.Utf8 O(n). Serialize a value by Showing it and then, HTML escaping and UTF-8 encoding the resulting String.
gshow :: Data a => a -> Stringsyb Data.Generics.Text Generic show: an alternative to "deriving Show"
gshows :: Data a => a -> ShowSsyb Data.Generics.Text Generic shows
hShowCursor :: Handle -> IO ()ansi-terminal System.Console.ANSI No documentation available.
traceShowId :: Show a => a -> abase-compat Debug.Trace.Compat Like traceShow but returns the shown value instead of a third value.
>>> traceShowId (1+2+3, "hello" ++ "world") (6,"helloworld") (6,"helloworld")
traceShowM :: (Show a, Applicative f) => a -> f ()base-compat Debug.Trace.Compat Like traceM, but uses show on the argument to convert it to a String.
>>> :{ do x <- Just 3 traceShowM x y <- pure 12 traceShowM y pure (x*2 + y) :} 3 12 Just 18traceShowWith :: Show b => (a -> b) -> a -> abase-compat Debug.Trace.Compat Like traceWith, but uses show on the result of the function to convert it to a String.
>>> traceShowWith length [1,2,3] 3 [1,2,3]
ghc8ShowBehavior :: Options -> Booltransformers-compat Data.Functor.Classes.Generic If True, a default Show1 implementation will show hash signs (#) when showing unlifted types.
-
transformers-compat Data.Functor.Classes.Generic A sensible default liftShowsPrec implementation for Generic1 instances.
-
transformers-compat Data.Functor.Classes.Generic Like liftShowsPrecDefault, but with configurable Options.