Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. showString :: String -> ShowS

    incipit-base Incipit.Base

    utility function converting a String to a show function that simply prepends the string unchanged.

  2. showsPrec :: Show a => Int -> a -> ShowS

    incipit-base Incipit.Base

    Convert a value to a readable String. showsPrec should satisfy the law

    showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
    
    Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  3. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental

    No documentation available.

  4. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental.LeftBiasedLocal

    No documentation available.

  5. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental.Symmetric

    No documentation available.

  6. showTree :: IntSet -> String

    intern Data.Interned.IntSet

    O(n). Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  7. showTreeWith :: Bool -> Bool -> IntSet -> String

    intern Data.Interned.IntSet

    O(n). The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

  8. showMessageType :: MessageType -> String

    ipython-kernel IHaskell.IPython.Types

    No documentation available.

  9. showJSArray :: [JSValue] -> ShowS

    json Text.JSON

    Show a list in JSON format

  10. showJSBool :: Bool -> ShowS

    json Text.JSON

    Write the JSON Bool type

Page 116 of many | Previous | Next