Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. unsafeShowPassword :: Password -> Text

    password Data.Password.Bcrypt

    This is an unsafe function that shows a password in plain-text.

    >>> unsafeShowPassword ("foobar" :: Password)
    "foobar"
    
    You should generally not use this function in production settings, as you don't want to accidentally print a password anywhere, like logs, network responses, database entries, etc. This will mostly be used by other libraries to handle the actual password internally, though it is conceivable that, even in a production setting, a password might have to be handled in an unsafe manner at some point.

  2. unsafeShowPassword :: Password -> Text

    password Data.Password.PBKDF2

    This is an unsafe function that shows a password in plain-text.

    >>> unsafeShowPassword ("foobar" :: Password)
    "foobar"
    
    You should generally not use this function in production settings, as you don't want to accidentally print a password anywhere, like logs, network responses, database entries, etc. This will mostly be used by other libraries to handle the actual password internally, though it is conceivable that, even in a production setting, a password might have to be handled in an unsafe manner at some point.

  3. unsafeShowPassword :: Password -> Text

    password Data.Password.Scrypt

    This is an unsafe function that shows a password in plain-text.

    >>> unsafeShowPassword ("foobar" :: Password)
    "foobar"
    
    You should generally not use this function in production settings, as you don't want to accidentally print a password anywhere, like logs, network responses, database entries, etc. This will mostly be used by other libraries to handle the actual password internally, though it is conceivable that, even in a production setting, a password might have to be handled in an unsafe manner at some point.

  4. hShow :: Handle -> IO String

    pathtype System.Path.IO

    hShow is in the IO monad, and gives more comprehensive output than the (pure) instance of Show for Handle.

  5. deriveShowFields :: [UnboundEntityDef] -> Q [Dec]

    persistent-documentation Database.Persist.Documentation

    Given a list of entity definitions, derives Show for all their fields. This is necessary for using this library for internal reasons, unfortunately.

  6. prettyShow :: Pretty a => a -> String

    prettyclass Text.PrettyPrint.HughesPJClass

    Pretty print a value with the prettyNormal level.

  7. defaultExprViaShow :: Show a => a -> Expr

    quickcheck-state-machine Test.StateMachine.TreeDiff.Class

    An alternative implementation for literal types. We use show representation of them.

  8. explicitShow :: Show a => RAList a -> String

    ral Data.RAList

    No documentation available.

  9. explicitShowsPrec :: Show a => Int -> RAList a -> ShowS

    ral Data.RAList

    No documentation available.

  10. explicitShow :: Show a => NERAList a -> String

    ral Data.RAList.NonEmpty

    No documentation available.

Page 390 of many | Previous | Next