Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

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

    hledger-lib Hledger.Write.Html.Blaze

    No documentation available.

  2. formatCell :: Lines border => Cell border Html -> Html

    hledger-lib Hledger.Write.Html.Lucid

    No documentation available.

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

    hledger-lib Hledger.Write.Html.Lucid

    No documentation available.

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

    numeric-prelude MathObj.Matrix

    No documentation available.

  5. force :: T Dimension

    numeric-prelude Number.SI.Unit

    Some common quantity classes.

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

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

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

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

  10. forIntersectionWithImmutable_ :: MonadIO m => FastMutableIntMap a -> IntMap b -> (a -> b -> m ()) -> m ()

    reflex Data.FastMutableIntMap

    Runs the provided action over the intersection of a FastMutableIntMap and an IntMap

Page 67 of many | Previous | Next