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.
liftPowerSumInt1 :: (C a, Eq a, C a) => ([a] -> [a]) -> [a] -> [a]numeric-prelude MathObj.RootSet No documentation available.
liftPowerSumInt2 :: (C a, Eq a, C a) => ([a] -> [a] -> [a]) -> [a] -> [a] -> [a]numeric-prelude MathObj.RootSet No documentation available.
toPowerSums :: (C a, C a) => [a] -> [a]numeric-prelude MathObj.RootSet No documentation available.
truncSeriesSummands :: Series -> Seriesnumeric-prelude Number.Positional help showing series summands
accsum :: (Additive a, Traversable f) => f a -> f anumhask NumHask Compute the accumulating sum of a Traversable.
>>> accsum [0..10] [0,1,3,6,10,15,21,28,36,45,55]
accsum :: (Additive a, Traversable f) => f a -> f anumhask NumHask.Algebra.Additive Compute the accumulating sum of a Traversable.
>>> accsum [0..10] [0,1,3,6,10,15,21,28,36,45,55]
-
numhask NumHask.Algebra.Additive No documentation available.
asum :: (Foldable t, Alternative f) => t (f a) -> f anumhask NumHask.Prelude The sum of a collection of actions using (<|>), generalizing concat. asum is just like msum, but generalised to Alternative.
Examples
Basic usage:>>> asum [Just "Hello", Nothing, Just "World"] Just "Hello"
msum :: (Foldable t, MonadPlus m) => t (m a) -> m anumhask NumHask.Prelude The sum of a collection of actions using (<|>), generalizing concat. msum is just like asum, but specialised to MonadPlus.
Examples
Basic usage, using the MonadPlus instance for Maybe:>>> msum [Just "Hello", Nothing, Just "World"] Just "Hello"
dsumToEither :: DSum (EitherTag a b) Identity -> Either a breflex Reflex.Class Convert DSum to Either. Inverse of eitherToDSum.