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. formatCell :: Lines border => Cell border Html -> Html

    hledger-lib Hledger.Write.Html.Lucid

    No documentation available.

  2. formatRow :: Lines border => [Cell border Html] -> Html

    hledger-lib Hledger.Write.Html.Lucid

    No documentation available.

  3. format :: Show a => T a -> String

    numeric-prelude MathObj.Matrix

    No documentation available.

  4. force :: T Dimension

    numeric-prelude Number.SI.Unit

    Some common quantity classes.

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

    numhask NumHask.Prelude

    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.

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

    numhask NumHask.Prelude

    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
    

  7. forF :: (TraversableF t, Applicative m) => t e -> (forall (s :: k) . () => e s -> m (f s)) -> m (t f)

    parameterized-utils Data.Parameterized.TraversableF

    Flipped traverseF

  8. forF_ :: (FoldableF t, Applicative m) => t f -> (forall (x :: k) . () => f x -> m a) -> m ()

    parameterized-utils Data.Parameterized.TraversableF

    Map each element of a structure to an action, evaluate these actions from left to right, and ignore the results.

  9. formatPalette :: MonadIO m => SurfacePixelFormat -> m (Maybe Palette)

    sdl2 SDL.Video.Renderer

    No documentation available.

  10. forP :: [a] -> (a -> Action b) -> Action [b]

    shake Development.Shake

    A parallel version of forM.

Page 68 of many | Previous | Next