Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. printLine :: String -> T ()

    doctest-exitcode-stdio Test.DocTest.Driver

    No documentation available.

  2. printPrefix :: String -> T ()

    doctest-exitcode-stdio Test.DocTest.Driver

    No documentation available.

  3. printX509 :: X509 -> IO String

    HsOpenSSL OpenSSL.X509

    printX509 cert translates a certificate into human-readable format.

  4. printX509Req :: X509Req -> IO String

    HsOpenSSL OpenSSL.X509.Request

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

  5. printCRL :: CRL -> IO String

    HsOpenSSL OpenSSL.X509.Revocation

    printCRL translates a revocation list into human-readable format.

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

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

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

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

    fgl Data.Graph.Inductive.Internal.Heap

    No documentation available.

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

Page 13 of many | Previous | Next