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.
makeShowsPrec2Options :: ShowOptions -> Name -> Q Expderiving-compat Text.Show.Deriving.Internal Like makeShowsPrec2, but takes a ShowOptions argument. This function is not available with transformers-0.4.
makeShowsPrecOptions :: ShowOptions -> Name -> Q Expderiving-compat Text.Show.Deriving.Internal Like makeShowsPrec, but takes a ShowOptions argument.
-
pandoc Text.Pandoc.Shared terminalUIShowRunTimes :: TerminalUIFormatter -> Boolsandwich Test.Sandwich.Formatters.TerminalUI Whether to show or hide run times.
terminalUIShowVisibilityThresholds :: TerminalUIFormatter -> Boolsandwich Test.Sandwich.Formatters.TerminalUI Whether to show or hide visibility thresholds next to nodes.
goldenShowable :: (Show a, Read a) => String -> a -> Golden asandwich Test.Sandwich.Golden timeItShow :: (MonadIO m, Show a) => m a -> m atimeit System.TimeIt Like timeIt, but uses the show rendering of a as label for the timing.
writeShowCursor :: DisplayContext -> Writevty Graphics.Vty.Output No documentation available.
assertEqualNoShow :: (HasCallStack, Eq a) => String -> a -> a -> YesodExample site ()yesod-test Yesod.Test Asserts that the two given values are equal.
traceShow :: Show a => a -> b -> bghc-internal GHC.Internal.Debug.Trace Like trace, but uses show on the argument to convert it to a String. This makes it convenient for printing the values of interesting variables or expressions inside a function. For example, here we print the values of the variables x and y:
>>> let f x y = traceShow ("x", x, "y", y) (x + y) in f (1+2) 5 ("x",3,"y",5) 8Note in this example we also create simple labels just by including some strings.