Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
callbackHaskellToForeignWithClosures :: Text -> Texthaskell-gi Data.GI.CodeGen.SymbolNaming The name of the Haskell to foreign wrapper for the given callback type, keeping the closure arguments (we usually elide them). The callback type can be passed in qualified.
-
haskell-gi Data.GI.GIR.Arg No documentation available.
gtypeStructFor :: Struct -> Maybe Namehaskell-gi Data.GI.GIR.Struct No documentation available.
structForceVisible :: Struct -> Boolhaskell-gi Data.GI.GIR.Struct No documentation available.
iforM_ :: (FoldableWithIndex i t, Monad m) => t a -> (i -> a -> m b) -> m ()indexed-traversable Data.Foldable.WithIndex Run monadic actions for each target of an IndexedFold or IndexedTraversal with access to the index, discarding the results (with the arguments flipped).
iforM_ ≡ flip imapM_
When you don't need access to the index then forM_ is more flexible in what it accepts.forM_ a ≡ iforM a . const
ifor_ :: (FoldableWithIndex i t, Applicative f) => t a -> (i -> a -> f b) -> f ()indexed-traversable Data.Foldable.WithIndex Traverse elements with access to the index i, discarding the results (with the arguments flipped).
ifor_ ≡ flip itraverse_
When you don't need access to the index then for_ is more flexible in what it accepts.for_ a ≡ ifor_ a . const
ifor :: (TraversableWithIndex i t, Applicative f) => t a -> (i -> a -> f b) -> f (t b)indexed-traversable Data.Traversable.WithIndex Traverse with an index (and the arguments flipped).
for a ≡ ifor a . const ifor ≡ flip itraverse
iforM :: (TraversableWithIndex i t, Monad m) => t a -> (i -> a -> m b) -> m (t b)indexed-traversable Data.Traversable.WithIndex Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results, with access its position (and the arguments flipped).
forM a ≡ iforM a . const iforM ≡ flip imapM
simpleTimeFormat :: TimeFormatfast-logger System.Log.FastLogger.Date A simple time cache using format "%d%b%Y:%T %z"
simpleTimeFormat' :: TimeFormatfast-logger System.Log.FastLogger.Date A simple time cache using format "%d-%b-%Y %T"