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. showParen :: Bool -> ShowS -> ShowS

    numhask NumHask.Prelude

    utility function that surrounds the inner show function with parentheses when the Bool parameter is True.

  2. showString :: String -> ShowS

    numhask NumHask.Prelude

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

  3. shows :: Show a => a -> ShowS

    numhask NumHask.Prelude

    equivalent to showsPrec with a precedence of 0.

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

    numhask NumHask.Prelude

    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.

  5. showF :: forall (tp :: k) . ShowF f => f tp -> String

    parameterized-utils Data.Parameterized.Classes

    No documentation available.

  6. showsPrecF :: forall (tp :: k) . ShowF f => Int -> f tp -> String -> String

    parameterized-utils Data.Parameterized.Classes

    Like showsPrec, the precedence argument is one more than the precedence of the enclosing context.

  7. showFC :: ShowFC t => (forall (x :: k) . () => f x -> String) -> forall (x :: l) . () => t f x -> String

    parameterized-utils Data.Parameterized.TraversableFC

    No documentation available.

  8. showsPrecFC :: ShowFC t => (forall (x :: k) . () => Int -> f x -> ShowS) -> forall (x :: l) . () => Int -> t f x -> ShowS

    parameterized-utils Data.Parameterized.TraversableFC

    No documentation available.

  9. showTree :: (Show k, Show a) => MonoidalMap k a -> String

    reflex Data.AppendMap

    Displays a MonoidalMap as a tree. See showTree for details.

  10. showTreeWith :: (k -> a -> String) -> Bool -> Bool -> MonoidalMap k a -> String

    reflex Data.AppendMap

    Displays a MonoidalMap as a tree, using the supplied function to convert nodes to string.

Page 76 of many | Previous | Next