Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
foldMapGlobals :: Monoid m => (Qualified -> m) -> Expression v -> melm-syntax Language.Elm.Expression No documentation available.
foldMapGlobals :: Monoid m => (Qualified -> m) -> Pattern v -> melm-syntax Language.Elm.Pattern No documentation available.
foldMapGlobals :: Monoid m => (Qualified -> m) -> Type v -> melm-syntax Language.Elm.Type No documentation available.
parBranchFoldMap :: NFData f => Int -> (e -> f) -> (f -> f -> f) -> Tree e a -> felynx-tree ELynx.Tree.Parallel Map and fold over branches. Evaluate the sub trees up to given layer in parallel.
parLabelFoldMap :: NFData b => Int -> (a -> b) -> (b -> b -> b) -> Tree e a -> belynx-tree ELynx.Tree.Parallel Map and fold over labels. Evaluate the sub trees up to given layer in parallel.
foldMap :: (Vector v a, Monoid m) => (a -> m) -> v a -> mfixed-vector Data.Vector.Fixed Map each element of the structure to a monoid, and combine the results. Similar to foldMap
imap :: (Vector v a, Vector v b) => (Int -> a -> b) -> v a -> v bfixed-vector Data.Vector.Fixed Apply function to every element of the vector and its index.
imapM :: (Vector v a, Vector v b, Applicative f) => (Int -> a -> f b) -> v a -> f (v b)fixed-vector Data.Vector.Fixed Apply monadic function to every element of the vector and its index.
imapM_ :: (Vector v a, Applicative f) => (Int -> a -> f b) -> v a -> f ()fixed-vector Data.Vector.Fixed Apply monadic function to every element of the vector and its index and discard result.
-
fixed-vector Data.Vector.Fixed.Cont Apply function to parameters and result of Fun simultaneously.