Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. gtypeStructFor :: Struct -> Maybe Name

    haskell-gi Data.GI.GIR.Struct

    No documentation available.

  2. structForceVisible :: Struct -> Bool

    haskell-gi Data.GI.GIR.Struct

    No documentation available.

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

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

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

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

  7. simpleTimeFormat :: TimeFormat

    fast-logger System.Log.FastLogger.Date

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

  8. simpleTimeFormat' :: TimeFormat

    fast-logger System.Log.FastLogger.Date

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

  9. type TimeFormat = ByteString

    fast-logger System.Log.FastLogger.Types

    No documentation available.

  10. data HandlerFor site a

    yesod-core Yesod.Core.Handler

    A generic handler monad, which can have a different subsite and master site. We define a newtype for better error message.

Page 518 of many | Previous | Next