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

  2. showLatexWithVars :: [String] -> Fix SRTree -> String

    srtree Data.SRTree.Print

    No documentation available.

  3. showOp :: Op -> String

    srtree Data.SRTree.Print

    No documentation available.

  4. showPython :: Fix SRTree -> String

    srtree Data.SRTree.Print

    Displays a tree as a numpy compatible expression.

    >>> showPython $ "x0" + sin ( tanh ("t0" + 2) )
    "(x[:, 0] + np.sin(np.tanh((t[:, 0] + 2.0))))"
    

  5. showTikz :: Fix SRTree -> String

    srtree Data.SRTree.Print

    Displays a tree in Tikz format

  6. showOutput :: Output -> Fix SRTree -> String

    srtree Text.ParseSR

    Returns the corresponding function from Data.SRTree.Print for a given Output.

  7. showSF :: (Show a, Show b) => SF a b -> String

    step-function Data.Function.Step

    Show SF as Haskell code

  8. showSF :: (Show a, Show b) => SF a b -> String

    step-function Data.Function.Step.Discrete.Closed

    Show SF as Haskell code

  9. showSF :: (Show a, Show b) => SF a b -> String

    step-function Data.Function.Step.Discrete.Open

    Show SF as Haskell code

  10. showEvent :: Event -> String

    streamly Streamly.Internal.FileSystem.Event

    Convert an Event record to a String representation. Note that the output of this function may be different on different platforms because it may contain platform specific details. Internal

Page 193 of many | Previous | Next