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.

  1. callbackHaskellToForeignWithClosures :: Text -> Text

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

  2. ScopeTypeForever :: Scope

    haskell-gi Data.GI.GIR.Arg

    No documentation available.

  3. gtypeStructFor :: Struct -> Maybe Name

    haskell-gi Data.GI.GIR.Struct

    No documentation available.

  4. structForceVisible :: Struct -> Bool

    haskell-gi Data.GI.GIR.Struct

    No documentation available.

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

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

  7. 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
    iforflip itraverse
    

  8. 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
    iforMflip imapM
    

  9. simpleTimeFormat :: TimeFormat

    fast-logger System.Log.FastLogger.Date

    A simple time cache using format "%d%b%Y:%T %z"

  10. simpleTimeFormat' :: TimeFormat

    fast-logger System.Log.FastLogger.Date

    A simple time cache using format "%d-%b-%Y %T"

Page 519 of many | Previous | Next