Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. printX509 :: X509 -> IO String

    HsOpenSSL OpenSSL.X509

    printX509 cert translates a certificate into human-readable format.

  2. printX509Req :: X509Req -> IO String

    HsOpenSSL OpenSSL.X509.Request

    printX509Req req translates a certificate request into human-readable format.

  3. printCRL :: CRL -> IO String

    HsOpenSSL OpenSSL.X509.Revocation

    printCRL translates a revocation list into human-readable format.

  4. printRE :: (Eq a, Show a) => RE a -> String

    hxt Text.XML.HXT.DTDValidation.RE

    Constructs a string representation of a regular expression.

    • 1.parameter re : a regular expression
    • returns : the string representation of the regular expression

  5. printRE :: (Eq a, Show a) => RE a -> String

    hxt Text.XML.HXT.DTDValidation.XmlRE

    Constructs a string representation of a regular expression.

    • 1.parameter re : a regular expression
    • returns : the string representation of the regular expression

  6. printTiers :: Show a => Int -> [[a]] -> IO ()

    leancheck Test.LeanCheck.Tiers

    Alternative to print for tiers with one element per line. (useful for debugging, see also showTiers).

    > printTiers 3 (tiers :: [[Int]])
    [ [0]
    , [1]
    , [-1]
    , ...
    ]
    > printTiers 3 (tiers :: [[Bool]])
    [ [ False
    , True
    ]
    ]
    
    This function can be useful when debugging your Listable instances.

  7. printPrettyHeap :: (Show a, Show b) => Heap a b -> IO ()

    fgl Data.Graph.Inductive.Internal.Heap

    No documentation available.

  8. printUrlEncoded :: Map ByteString [ByteString] -> ByteString

    snap-core Snap.Core

    Given a collection of key-value pairs with possibly duplicate keys (represented as a Map), construct a string in application/x-www-form-urlencoded format. Example:

    ghci> printUrlEncoded (fromList [(Name, ["John Doe"]), (Age, ["23"])])
    "Age=23&Name=John+Doe"
    

  9. printUrlEncoded :: Map ByteString [ByteString] -> ByteString

    snap-core Snap.Internal.Parsing

    Given a collection of key-value pairs with possibly duplicate keys (represented as a Map), construct a string in application/x-www-form-urlencoded format. Example:

    ghci> printUrlEncoded (fromList [(Name, ["John Doe"]), (Age, ["23"])])
    "Age=23&Name=John+Doe"
    

  10. printMsg :: MonadEditor m => Text -> m ()

    yi-core Yi.Editor

    Prints a message with defaultStyle.

Page 13 of many | Previous | Next