Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. summarizeSuiteFinish :: TestSuiteLog -> String

    Cabal Distribution.Simple.Test.Log

    Print a summary of the test suite's results on the console, suppressing output for certain verbosity or test filter levels.

  2. summarizeSuiteStart :: String -> String

    Cabal Distribution.Simple.Test.Log

    No documentation available.

  3. summarizeTest :: Verbosity -> TestShowDetails -> TestLogs -> IO ()

    Cabal Distribution.Simple.Test.Log

    Print a summary of a single test case's result to the console, suppressing output for certain verbosity or test filter levels.

  4. summaryExamples :: Summary -> !Int

    hspec-core Test.Hspec.Core.Runner

    No documentation available.

  5. summaryFailures :: Summary -> !Int

    hspec-core Test.Hspec.Core.Runner

    No documentation available.

  6. summary :: String -> Ann

    cmdargs System.Console.CmdArgs.Implicit

    Modes: "My program name/version/copyright is ..." One line summary of the entire program, the first line of --help and the only line of --version. If the string contains a version number component will also provide --numeric-version.

    Sample{..} &= summary "CmdArgs v0.0, (C) Neil Mitchell 1981"
    

  7. sumV :: (Foldable f, Additive v, Num a) => f (v a) -> v a

    linear Linear.Vector

    Sum over multiple vectors

    >>> sumV [V2 1 1, V2 3 4]
    V2 4 5
    

  8. sumOf :: forall k a (is :: IxList) s . (Is k A_Fold, Num a) => Optic' k is s a -> s -> a

    optics-core Optics.Fold

    Calculate the Sum of every number targeted by a Fold.

    >>> sumOf each (5,6)
    11
    
    >>> sumOf folded [1,2,3,4]
    10
    
    >>> sumOf (folded % each) [(1,2),(3,4)]
    10
    
    sumsumOf folded
    
    This operation may be more strict than you would expect. If you want a lazier version use \o -> getSum . foldMapOf o Sum

  9. summing :: forall k l (is :: IxList) s a (js :: IxList) . (Is k A_Fold, Is l A_Fold) => Optic' k is s a -> Optic' l js s a -> Fold s a

    optics-core Optics.Fold

    Return entries of the first Fold, then the second one.

    >>> toListOf (_1 % ix 0 `summing` _2 % ix 1) ([1,2], [4,7,1])
    [1,7]
    
    For the traversal version see adjoin.

  10. sumElements :: Container c e => c e -> e

    hmatrix Numeric.LinearAlgebra

    the sum of elements

Page 43 of many | Previous | Next