Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

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

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

    shower Shower.Class

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

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

    shower Shower.Class

    A tuple, (1, 2, 3).

  3. showerRender :: ShowerDoc -> String

    shower Shower.Printer

    Render a ShowerDoc with the default style.

  4. showPkgId :: PackageIdentifier -> String

    simple-cabal SimpleCabal

    convert PackageIdentifier to a displayable string

  5. showVersion :: Version -> String

    simple-cabal SimpleCabal

    render a Version

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

    srtree Algorithm.SRTree.ConfidenceIntervals

    No documentation available.

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

  8. 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))))"
    

  9. showLatex :: Fix SRTree -> String

    srtree Data.SRTree.Print

    Displays a tree as a LaTeX compatible expression.

    >>> showLatex $ "x0" + sin ( tanh ("t0" + 2) )
    "\\left(x_{, 0} + \\operatorname{sin}(\\operatorname{tanh}(\\left(\\theta_{, 0} + 2.0\\right)))\\right)"
    

  10. showOp :: Op -> String

    srtree Data.SRTree.Print

    No documentation available.

Page 159 of many | Previous | Next