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.

  1. makeShowsPrec2Options :: ShowOptions -> Name -> Q Exp

    deriving-compat Text.Show.Deriving.Internal

    Like makeShowsPrec2, but takes a ShowOptions argument. This function is not available with transformers-0.4.

  2. makeShowsPrecOptions :: ShowOptions -> Name -> Q Exp

    deriving-compat Text.Show.Deriving.Internal

    Like makeShowsPrec, but takes a ShowOptions argument.

  3. tshow :: Show a => a -> Text

    pandoc Text.Pandoc.Shared

    Like show, but returns a Text instead of a String.

  4. terminalUIShowRunTimes :: TerminalUIFormatter -> Bool

    sandwich Test.Sandwich.Formatters.TerminalUI

    Whether to show or hide run times.

  5. terminalUIShowVisibilityThresholds :: TerminalUIFormatter -> Bool

    sandwich Test.Sandwich.Formatters.TerminalUI

    Whether to show or hide visibility thresholds next to nodes.

  6. goldenShowable :: (Show a, Read a) => String -> a -> Golden a

    sandwich Test.Sandwich.Golden

    Golden for a general Show/Read type.

  7. timeItShow :: (MonadIO m, Show a) => m a -> m a

    timeit System.TimeIt

    Like timeIt, but uses the show rendering of a as label for the timing.

  8. writeShowCursor :: DisplayContext -> Write

    vty Graphics.Vty.Output

    No documentation available.

  9. assertEqualNoShow :: (HasCallStack, Eq a) => String -> a -> a -> YesodExample site ()

    yesod-test Yesod.Test

    Asserts that the two given values are equal.

  10. traceShow :: Show a => a -> b -> b

    ghc-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)
    8
    
    Note in this example we also create simple labels just by including some strings.

Page 259 of many | Previous | Next