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.

  1. stateBreadcrumbType :: BreadcrumbType

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

  2. thread_errorReportingThread :: Thread -> Maybe Bool

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

  3. thread_id :: Thread -> Maybe Text

    bugsnag-hs Network.Bugsnag

    The id of the thread in your application.

  4. thread_name :: Thread -> Maybe Text

    bugsnag-hs Network.Bugsnag

    A human readable name for the thread.

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

  6. thread_type :: Thread -> Maybe ThreadType

    bugsnag-hs Network.Bugsnag

    Setting this allows the stacktrace to be parsed correctly.

  7. userBreadcrumbType :: BreadcrumbType

    bugsnag-hs Network.Bugsnag

    Actions performed by the user, like text input, button presses, or confirming/cancelling an alert dialog.

  8. addFlagReadParam :: forall (f :: Type -> Type) p out . (Applicative f, Typeable p, Read p, Show p) => String -> [String] -> String -> Flag p -> CmdParser f out p

    butcher UI.Butcher.Monadic.Flag

    One-argument flag, where the argument is parsed via its Read instance.

  9. addFlagReadParams :: forall (f :: Type -> Type) p out . (Applicative f, Typeable p, Read p, Show p) => String -> [String] -> String -> Flag p -> CmdParser f out [p]

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

  10. addParamRead :: forall (f :: Type -> Type) out a . (Applicative f, Typeable a, Show a, Read a) => String -> Param a -> CmdParser f out a

    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.

Page 685 of many | Previous | Next