Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
stateBreadcrumbType :: BreadcrumbTypebugsnag-hs Network.Bugsnag Changing the overall state of an app, such as closing, pausing, or being moved to the background, as well as device state changes like memory or battery warnings and network connectivity changes.
thread_errorReportingThread :: Thread -> Maybe Boolbugsnag-hs Network.Bugsnag If this is the thread that the error was reported from (either an unhandled error or a call to bugsnag.notify), set this to true.
thread_id :: Thread -> Maybe Textbugsnag-hs Network.Bugsnag The id of the thread in your application.
thread_name :: Thread -> Maybe Textbugsnag-hs Network.Bugsnag A human readable name for the thread.
thread_stacktrace :: Thread -> Maybe [StackFrame]bugsnag-hs Network.Bugsnag An array of stacktrace objects. Each object represents one line in the stacktrace of the thread at the point that the error occurred.
thread_type :: Thread -> Maybe ThreadTypebugsnag-hs Network.Bugsnag Setting this allows the stacktrace to be parsed correctly.
userBreadcrumbType :: BreadcrumbTypebugsnag-hs Network.Bugsnag Actions performed by the user, like text input, button presses, or confirming/cancelling an alert dialog.
-
butcher UI.Butcher.Monadic.Flag One-argument flag, where the argument is parsed via its Read instance.
-
butcher UI.Butcher.Monadic.Flag One-argument flag, where the argument is parsed via its Read instance. This version can accumulate multiple values by using the same flag with different arguments multiple times. E.g. "--foo 3 --foo 5" yields [3,5].
-
butcher UI.Butcher.Monadic.Param Add a parameter to the CmdParser by making use of a Read instance. Take care not to use this to return Strings unless you really want that, because it will require the quotation marks and escaping as is normal for the Show/Read instances for String.