Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. formatISO8601Nanos :: UTCTime -> String

    iso8601-time Data.Time.ISO8601

    Formats a time in ISO 8601 with up to nanosecond precision and trailing zeros. The format is precisely:

    YYYY-MM-DDTHH:mm:ss.sssssssssZ
    

  2. formatISO8601Picos :: UTCTime -> String

    iso8601-time Data.Time.ISO8601

    Formats a time in ISO 8601 with up to picosecond precision and trailing zeros. The format is precisely:

    YYYY-MM-DDTHH:mm:ss.ssssssssssssZ
    

  3. forWithKey :: (TraversableWithKey t, Applicative f) => t a -> (Key t -> a -> f b) -> f (t b)

    keys Data.Key

    No documentation available.

  4. forWithKey1_ :: (FoldableWithKey1 t, Apply f) => t a -> (Key t -> a -> f b) -> f ()

    keys Data.Key

    No documentation available.

  5. forWithKeyM :: (TraversableWithKey t, Monad m) => t a -> (Key t -> a -> m b) -> m (t b)

    keys Data.Key

    No documentation available.

  6. forWithKeyM_ :: (FoldableWithKey t, Monad m) => t a -> (Key t -> a -> m b) -> m ()

    keys Data.Key

    No documentation available.

  7. forWithKey_ :: (FoldableWithKey t, Applicative f) => t a -> (Key t -> a -> f b) -> f ()

    keys Data.Key

    No documentation available.

  8. fork :: Scope -> IO a -> IO (Thread a)

    ki Ki

    Create a child thread to execute an action within a scope. Note: The child thread does not mask asynchronous exceptions, regardless of the parent thread's masking state. To create a child thread with a different initial masking state, use forkWith.

  9. forkTry :: Exception e => Scope -> IO a -> IO (Thread (Either e a))

    ki Ki

    Like fork, but the child thread does not propagate exceptions that are both:

  10. forkTryWith :: Exception e => Scope -> ThreadOptions -> IO a -> IO (Thread (Either e a))

    ki Ki

    Variant of forkTry that takes an additional options argument.

Page 86 of many | Previous | Next