Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showType :: (Maybe OpenApiType, Value) -> String

    openapi3 Data.OpenApi.Internal.Schema.Validation

    No documentation available.

  2. showStackTrace :: IO (Maybe String)

    protolude Protolude

    Get a string representation of the current execution stack state.

  3. showFloat :: RealFloat a => a -> ShowS

    protolude Protolude.Base

    Show a signed RealFloat value to full precision using standard decimal notation for arguments whose absolute value lies between 0.1 and 9,999,999, and scientific notation otherwise.

  4. showList :: Show a => [a] -> ShowS

    protolude Protolude.Base

    The method showList is provided to allow the programmer to give a specialised way of showing lists of values. For example, this is used by the predefined Show instance of the Char type, where values of type String should be shown in double quotes, rather than between square brackets.

  5. showSigned :: Real a => (a -> ShowS) -> Int -> a -> ShowS

    protolude Protolude.Base

    Converts a possibly-negative Real value to a string.

  6. showSignedFloat :: RealFloat a => (a -> ShowS) -> Int -> a -> ShowS

    protolude Protolude.Base

    No documentation available.

  7. showStackTrace :: IO (Maybe String)

    protolude Protolude.Base

    Get a string representation of the current execution stack state.

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

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

  9. showb :: TextShow a => a -> Builder

    text-show TextShow

    Converts a value to a strict Text. If you hand-define this, it should satisfy:

    showb = showbPrec 0
    
    Since: 2

  10. showbBinaryWith :: (Int -> a -> Builder) -> (Int -> b -> Builder) -> Builder -> Int -> a -> b -> Builder

    text-show TextShow

    showbBinaryWith sp n p x y produces the Builder representation of a binary data constructor with name n and arguments x and y, in precedence context p, using the functions sp1 and sp2 to show occurrences of the type arguments. Since: 2

Page 60 of many | Previous | Next