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.
formatISO8601Nanos :: UTCTime -> Stringiso8601-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
formatISO8601Picos :: UTCTime -> Stringiso8601-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
forWithKey :: (TraversableWithKey t, Applicative f) => t a -> (Key t -> a -> f b) -> f (t b)keys Data.Key No documentation available.
forWithKey1_ :: (FoldableWithKey1 t, Apply f) => t a -> (Key t -> a -> f b) -> f ()keys Data.Key No documentation available.
forWithKeyM :: (TraversableWithKey t, Monad m) => t a -> (Key t -> a -> m b) -> m (t b)keys Data.Key No documentation available.
forWithKeyM_ :: (FoldableWithKey t, Monad m) => t a -> (Key t -> a -> m b) -> m ()keys Data.Key No documentation available.
forWithKey_ :: (FoldableWithKey t, Applicative f) => t a -> (Key t -> a -> f b) -> f ()keys Data.Key No documentation available.
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.
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:
- Synchronous (i.e. not an instance of SomeAsyncException).
- An instance of e.
forkTryWith :: Exception e => Scope -> ThreadOptions -> IO a -> IO (Thread (Either e a))ki Ki Variant of forkTry that takes an additional options argument.