Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. package midair

    Hot-swappable FRP FRP for livecoding. You can hot-swap pieces or the whole of an FRP graph while it's running. Small examples are in Midair.Examples The API may change a lot in the future.

  2. package minimal-configuration

    Minimal ini like configuration library with a few extras The module exported provides the ability to manage a configuration file in the users home directory (or the Windows equivalent). Where the configuration takes the form of key=value, without sections, that for example an '.ini' would have. The library simplifies serilization/deserialization of the configuration into a structure similar in behavior to a Map, as well as an interactive way to fill in values for simple cases. Consider the following example, where a user would run the application for the first time, it would ask him for his name; however on a followup run it would just print a greeting with his name.

    import System.Config.File
    
    main = loadLocal ".apprc" >>= \conf -> do
    let name = getV conf "name"
    case name of Just n  -> putStrLn $ "hello " ++ n
    Nothing -> do conf' <- fillInteractively conf [("name", acceptNonBlank)]
    saveConfiguration conf'
    

  3. package misfortune

    fortune-mod clone fortune-mod clone, in library and executable form.

  4. package missing-foreign

    Convenience functions for FFI work Add several functions missing in the standard Foreign modules:

    • copy and move based on Storable
    • calloc

  5. package monad-chronicle

    These as a transformer, ChronicleT This packages provides ChronicleT, a monad transformer based on the Monad instance for These a, along with the usual monad transformer bells and whistles.

  6. package monad-extras

    Extra utility functions for working with monads Extra utility functions for working with monads

  7. package monad-logger-json

    JSON-friendly Logging APIs Convienence functions for logging ToJSON with monad-logger

  8. package monad-logger-logstash

    Logstash backend for monad-logger. Please see the README on GitHub at https://github.com/mbg/logstash#readme

  9. package monad-logger-syslog

    syslog output for monad-logger syslog output for monad-logger

  10. package monad-resumption

    Resumption and reactive resumption monads for Haskell. This package contains the definitions of Resumption and Reactive Resumption Monads.

Page 308 of many | Previous | Next