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

    blaze-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.

  2. gshow :: Data a => a -> String

    syb Data.Generics.Text

    Generic show: an alternative to "deriving Show"

  3. gshows :: Data a => a -> ShowS

    syb Data.Generics.Text

    Generic shows

  4. hShowCursor :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

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

    base-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")
    

  6. 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 18
    

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

    base-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]
    

  8. ghc8ShowBehavior :: Options -> Bool

    transformers-compat Data.Functor.Classes.Generic

    If True, a default Show1 implementation will show hash signs (#) when showing unlifted types.

  9. liftShowsPrecDefault :: (GShow1 NonV4 (Rep1 f), Generic1 f) => (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic

    A sensible default liftShowsPrec implementation for Generic1 instances.

  10. liftShowsPrecOptions :: (GShow1 NonV4 (Rep1 f), Generic1 f) => Options -> (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic

    Like liftShowsPrecDefault, but with configurable Options.

Page 230 of many | Previous | Next