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. forwardOptions :: ShakeOptions -> ShakeOptions

    shake Development.Shake.Forward

    Given a ShakeOptions, set the options necessary to execute in forward mode.

  2. forwardRule :: Action () -> Rules ()

    shake Development.Shake.Forward

    Given an Action, turn it into a Rules structure which runs in forward mode.

  3. format :: HasFormat s a => Lens' s a

    swagger2 Data.Swagger.Lens

    No documentation available.

  4. formatHeader :: Header -> String

    sydtest-wai Test.Syd.Wai.Matcher

    No documentation available.

  5. forkL :: (HasTrie (Basis a), HasBasis c, HasBasis d) => (a :-* c) -> (a :-* d) -> a :-* (c, d)

    vector-space Data.LinearMap

    No documentation available.

  6. forConnection :: T -> Data -> T

    alsa-seq Sound.ALSA.Sequencer.Event

    No documentation available.

  7. forSourcePort :: T -> Data -> T

    alsa-seq Sound.ALSA.Sequencer.Event

    No documentation available.

  8. forM :: (Traversable t, Monad m) => t a -> (a -> m b) -> m (t b)

    basic-prelude BasicPrelude

    forM is mapM with its arguments flipped. For a version that ignores the results see forM_.

  9. forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()

    basic-prelude BasicPrelude

    forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore the results see forM. forM_ is just like for_, but specialised to monadic actions.

  10. for_ :: (Foldable t, Applicative f) => t a -> (a -> f b) -> f ()

    basic-prelude BasicPrelude

    for_ is traverse_ with its arguments flipped. For a version that doesn't ignore the results see for. This is forM_ generalised to Applicative actions. for_ is just like forM_, but generalised to Applicative actions.

    Examples

    Basic usage:
    >>> for_ [1..4] print
    1
    2
    3
    4
    

Page 69 of many | Previous | Next