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.

  1. testSuiteStatSumTime :: TestSuiteStats -> !Word64

    sydtest Test.Syd.SpecDef

    No documentation available.

  2. type Consumer a = Proxy () a () X

    pipes Pipes

    Consumers can only await

  3. type Consumer' a (m :: Type -> Type) r = forall y' y . () => Proxy () a y' y m r

    pipes Pipes

    Like Consumer, but with a polymorphic type

  4. type Consumer a = Proxy () a () X

    pipes Pipes.Core

    Consumers can only await

  5. type Consumer' a (m :: Type -> Type) r = forall y' y . () => Proxy () a y' y m r

    pipes Pipes.Core

    Like Consumer, but with a polymorphic type

  6. fromSinglesSum :: ([v] -> v) -> (Int, Int) -> (Int -> v) -> TrieSet v

    regex-tdfa Text.Regex.TDFA.IntArrTrieSet

    This is a Trie constructor for a complete range of keys that uses a function from single values and a sum operation of values to fill the Trie.

  7. gsum :: (GFoldable t, Num a) => t a -> a

    generic-deriving Generics.Deriving.Foldable

    No documentation available.

  8. getSum :: Sum a -> a

    generic-deriving Generics.Deriving.Monoid

    No documentation available.

  9. asumOf :: forall k f (is :: IxList) s a . (Is k A_Fold, Alternative f) => Optic' k is s (f a) -> s -> f a

    optics-core Optics.Fold

    The sum of a collection of actions.

    >>> asumOf each ("hello","world")
    "helloworld"
    
    >>> asumOf each (Nothing, Just "hello", Nothing)
    Just "hello"
    
    asumasumOf folded
    

  10. msumOf :: forall k m (is :: IxList) s a . (Is k A_Fold, MonadPlus m) => Optic' k is s (m a) -> s -> m a

    optics-core Optics.Fold

    The sum of a collection of actions.

    >>> msumOf each ("hello","world")
    "helloworld"
    
    >>> msumOf each (Nothing, Just "hello", Nothing)
    Just "hello"
    
    msummsumOf folded
    

Page 100 of many | Previous | Next