Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. showerRecord :: Shower a => [ShowerComma (a, ShowerFieldSep, a)] -> a

    shower Shower.Class

    A record, { x = 24, y = 42 } or { "a": null, "b": 13 }.

  2. showerSpace :: Shower a => [a] -> a

    shower Shower.Class

    Whitespace-separated elements.

  3. showerStringLit :: Shower a => String -> a

    shower Shower.Class

    A string literal, "hello, (world)".

  4. showerTuple :: Shower a => [ShowerComma a] -> a

    shower Shower.Class

    A tuple, (1, 2, 3).

  5. showerRender :: ShowerDoc -> String

    shower Shower.Printer

    Render a ShowerDoc with the default style.

  6. showPkgId :: PackageIdentifier -> String

    simple-cabal SimpleCabal

    convert PackageIdentifier to a displayable string

  7. showVersion :: Version -> String

    simple-cabal SimpleCabal

    render a Version

  8. showCI :: Int -> CI -> String

    srtree Algorithm.SRTree.ConfidenceIntervals

    No documentation available.

  9. showExpr :: Fix SRTree -> String

    srtree Data.SRTree.Print

    convert a tree into a string in math notation

    >>> showExpr $ "x0" + sin ( tanh ("t0" + 2) )
    "(x0 + Sin(Tanh((t0 + 2.0))))"
    

  10. showExprWithVars :: [String] -> Fix SRTree -> String

    srtree Data.SRTree.Print

    convert a tree into a string in math notation given named vars.

    >>> showExprWithVar ["mu", "eps"] $ "x0" + sin ( "x1" * tanh ("t0" + 2) )
    "(mu + Sin(Tanh(eps * (t0 + 2.0))))"
    

Page 192 of many | Previous | Next