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. sumNestedAssociative :: C a => [a] -> a

    numeric-prelude Algebra.Additive

    Sum the operands in an order, such that the dependencies are minimized. Does this have a measurably effect on speed? Requires associativity.

    \ns -> A.sum ns == (A.sumNestedAssociative ns :: Integer)
    

  2. sumNestedCommutative :: C a => [a] -> a

    numeric-prelude Algebra.Additive

    Make sure that the last entries in the list are equally often part of an addition. Maybe this can reduce rounding errors. The list that sum2 computes is a breadth-first-flattened binary tree. Requires associativity and commutativity.

    \ns -> A.sum ns == (A.sumNestedCommutative ns :: Integer)
    

  3. sums :: T a -> [a]

    numeric-prelude MathObj.PowerSum

    No documentation available.

  4. sum1 :: C a => [a] -> a

    numeric-prelude NumericPrelude

    Sum up all elements of a non-empty list. This avoids including a zero which is useful for types where no universal zero is available. ToDo: Should have NonEmpty type.

    \(QC.NonEmpty ns) -> A.sum ns == (A.sum1 ns :: Integer)
    

  5. sum1 :: C a => [a] -> a

    numeric-prelude NumericPrelude.Numeric

    Sum up all elements of a non-empty list. This avoids including a zero which is useful for types where no universal zero is available. ToDo: Should have NonEmpty type.

    \(QC.NonEmpty ns) -> A.sum ns == (A.sum1 ns :: Integer)
    

  6. summary :: HasSummary s a => Lens' s a

    swagger2 Data.Swagger.Lens

    No documentation available.

  7. sumAdtDec :: Name -> [(Name, [Type])] -> Dec

    th-lego THLego.Helpers

    No documentation available.

  8. sumCon :: Name -> [Type] -> Con

    th-lego THLego.Helpers

    No documentation available.

  9. sumAccessorIsLabel :: TyLit -> Type -> Name -> [Type] -> Dec

    th-lego THLego.Instances

    instance (a ~ Maybe Text) => IsLabel "error" (Result -> a)
    

  10. sumConstructorIsLabel :: TyLit -> Type -> Name -> [Type] -> Dec

    th-lego THLego.Instances

    No documentation available.

Page 47 of many | Previous | Next