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.
formatRow :: Lines border => [Cell border Html] -> Htmlhledger-lib Hledger.Write.Html.Blaze No documentation available.
formatCell :: Lines border => Cell border Html -> Htmlhledger-lib Hledger.Write.Html.Lucid No documentation available.
formatRow :: Lines border => [Cell border Html] -> Htmlhledger-lib Hledger.Write.Html.Lucid No documentation available.
format :: Show a => T a -> Stringnumeric-prelude MathObj.Matrix No documentation available.
-
numeric-prelude Number.SI.Unit Some common quantity classes.
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.
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
-
parameterized-utils Data.Parameterized.TraversableF Flipped traverseF
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.
-
reflex Data.FastMutableIntMap Runs the provided action over the intersection of a FastMutableIntMap and an IntMap