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. xinfoConsumerIdleTime :: XInfoConsumersResponse -> Integer

    hedis Database.Redis.Sentinel

    No documentation available.

  2. xinfoConsumerName :: XInfoConsumersResponse -> ByteString

    hedis Database.Redis.Sentinel

    No documentation available.

  3. xinfoConsumerNumPendingMessages :: XInfoConsumersResponse -> Integer

    hedis Database.Redis.Sentinel

    No documentation available.

  4. xinfoConsumers :: RedisCtx m f => ByteString -> ByteString -> m (f [XInfoConsumersResponse])

    hedis Database.Redis.Sentinel

    No documentation available.

  5. xinfoGroupsNumConsumers :: XInfoGroupsResponse -> Integer

    hedis Database.Redis.Sentinel

    No documentation available.

  6. xpendingSummary :: RedisCtx m f => ByteString -> ByteString -> Maybe ByteString -> m (f XPendingSummaryResponse)

    hedis Database.Redis.Sentinel

    No documentation available.

  7. asumMap :: forall b m f a . (Foldable f, Alternative m) => (a -> m b) -> f a -> m b

    relude Relude.Foldable.Fold

    Alternative version of asum that takes a function to map over.

    >>> asumMap (\x -> if x > 2 then Just x else Nothing) [1..4]
    Just 3
    

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

    relude Relude.Foldable.Reexport

    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"
    

  9. biasum :: (Bifoldable t, Alternative f) => t (f a) (f a) -> f a

    relude Relude.Foldable.Reexport

    The sum of a collection of actions, generalizing biconcat.

    Examples

    Basic usage:
    >>> biasum (Nothing, Nothing)
    Nothing
    
    >>> biasum (Nothing, Just 42)
    Just 42
    
    >>> biasum (Just 18, Nothing)
    Just 18
    
    >>> biasum (Just 18, Just 42)
    Just 18
    

  10. getSum :: Sum a -> a

    relude Relude.Monoid

    No documentation available.

Page 112 of many | Previous | Next