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.
showerRecord :: Shower a => [ShowerComma (a, ShowerFieldSep, a)] -> ashower Shower.Class A record, { x = 24, y = 42 } or { "a": null, "b": 13 }.
showerSpace :: Shower a => [a] -> ashower Shower.Class Whitespace-separated elements.
showerStringLit :: Shower a => String -> ashower Shower.Class A string literal, "hello, (world)".
showerTuple :: Shower a => [ShowerComma a] -> ashower Shower.Class A tuple, (1, 2, 3).
showerRender :: ShowerDoc -> Stringshower Shower.Printer Render a ShowerDoc with the default style.
showPkgId :: PackageIdentifier -> Stringsimple-cabal SimpleCabal convert PackageIdentifier to a displayable string
showVersion :: Version -> Stringsimple-cabal SimpleCabal render a Version
-
srtree Algorithm.SRTree.ConfidenceIntervals No documentation available.
showExpr :: Fix SRTree -> Stringsrtree Data.SRTree.Print convert a tree into a string in math notation
>>> showExpr $ "x0" + sin ( tanh ("t0" + 2) ) "(x0 + Sin(Tanh((t0 + 2.0))))"showExprWithVars :: [String] -> Fix SRTree -> Stringsrtree 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))))"