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

  2. showTikz :: Fix SRTree -> String

    srtree Data.SRTree.Print

    Displays a tree in Tikz format

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

    srtree Text.ParseSR

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

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

    step-function Data.Function.Step

    Show SF as Haskell code

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

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

    Show SF as Haskell code

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

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

    Show SF as Haskell code

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

  8. showEvent :: Event -> String

    streamly Streamly.Internal.FileSystem.Event.Linux

    Convert an Event record to a String representation.

  9. showOutputable :: Outputable a => a -> String

    stylish-haskell Language.Haskell.Stylish.GHC

    No documentation available.

  10. showls :: ShowLines sh => String -> sh -> ShowS

    swish Data.String.ShowLines

    Multi-line value display method Create a multiline displayable form of a value, returned as a ShowS value. The default implementation behaves just like a normal instance of Show. This function is intended to allow the calling function some control of multiline displays by providing:

    1. the first line of the value is not preceded by any text, so it may be appended to some preceding text on the same line,
    2. the supplied line break string is used to separate lines of the formatted text, and may include any desired indentation, and
    3. no newline is output following the final line of text.

Page 160 of many | Previous | Next