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. traceShowId :: Show a => a -> a

    ghc-internal GHC.Internal.Debug.Trace

    Like traceShow but returns the shown value instead of a third value.

    >>> traceShowId (1+2+3, "hello" ++ "world")
    (6,"helloworld")
    (6,"helloworld")
    

  2. traceShowM :: (Show a, Applicative f) => a -> f ()

    ghc-internal GHC.Internal.Debug.Trace

    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 18
    

  3. traceShowWith :: Show b => (a -> b) -> a -> a

    ghc-internal GHC.Internal.Debug.Trace

    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]
    

  4. hShow :: Handle -> IO String

    ghc-internal GHC.Internal.IO.Handle

    hShow is in the IO monad, and gives more comprehensive output than the (pure) instance of Show for Handle.

  5. hShow :: Handle -> IO String

    ghc-internal GHC.Internal.System.IO

    hShow is in the IO monad, and gives more comprehensive output than the (pure) instance of Show for Handle.

  6. AttrTypeShow :: AttrType

    gi-pango GI.Pango.Enums

    how to render invisible characters (tAttrInt). Since 1.44

  7. AnotherShowFlags :: Int -> ShowFlags

    gi-pango GI.Pango.Flags

    Catch-all for unknown values

  8. attrShowNew :: (HasCallStack, MonadIO m) => [ShowFlags] -> m Attribute

    gi-pango GI.Pango.Functions

    Create a new attribute that influences how invisible characters are rendered. Since: 1.44

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

    protolude Protolude.Debug

    Warning: traceShow remains in code

  10. traceShowId :: Show a => a -> a

    protolude Protolude.Debug

    Warning: traceShowId remains in code

Page 260 of many | Previous | Next