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.
printX509 :: X509 -> IO StringHsOpenSSL OpenSSL.X509 printX509 cert translates a certificate into human-readable format.
printX509Req :: X509Req -> IO StringHsOpenSSL OpenSSL.X509.Request printX509Req req translates a certificate request into human-readable format.
-
HsOpenSSL OpenSSL.X509.Revocation printCRL translates a revocation list into human-readable format.
printRE :: (Eq a, Show a) => RE a -> Stringhxt 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
printRE :: (Eq a, Show a) => RE a -> Stringhxt 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
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.printPrettyHeap :: (Show a, Show b) => Heap a b -> IO ()fgl Data.Graph.Inductive.Internal.Heap No documentation available.
printUrlEncoded :: Map ByteString [ByteString] -> ByteStringsnap-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"
printUrlEncoded :: Map ByteString [ByteString] -> ByteStringsnap-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"
printMsg :: MonadEditor m => Text -> m ()yi-core Yi.Editor Prints a message with defaultStyle.