Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. toPowerSums :: (C a, C a) => [a] -> [a]

    numeric-prelude MathObj.RootSet

    No documentation available.

  2. truncSeriesSummands :: Series -> Series

    numeric-prelude Number.Positional

    help showing series summands

  3. accsum :: (Additive a, Traversable f) => f a -> f a

    numhask NumHask

    Compute the accumulating sum of a Traversable.

    >>> accsum [0..10]
    [0,1,3,6,10,15,21,28,36,45,55]
    

  4. accsum :: (Additive a, Traversable f) => f a -> f a

    numhask NumHask.Algebra.Additive

    Compute the accumulating sum of a Traversable.

    >>> accsum [0..10]
    [0,1,3,6,10,15,21,28,36,45,55]
    

  5. getSum :: Sum a -> a

    numhask NumHask.Algebra.Additive

    No documentation available.

  6. asum :: (Foldable t, Alternative f) => t (f a) -> f a

    numhask 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"
    

  7. msum :: (Foldable t, MonadPlus m) => t (m a) -> m a

    numhask 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"
    

  8. dsumToEither :: DSum (EitherTag a b) Identity -> Either a b

    reflex Reflex.Class

    Convert DSum to Either. Inverse of eitherToDSum.

  9. eitherToDSum :: Either a b -> DSum (EitherTag a b) Identity

    reflex Reflex.Class

    Convert Either to a DSum. Inverse of dsumToEither.

  10. _operationConsumes :: Operation -> Maybe MimeList

    swagger2 Data.Swagger

    A list of MIME types the operation can consume. This overrides the consumes. Just [] MAY be used to clear the global definition.

Page 130 of many | Previous | Next