Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. Pong :: Status

    hedis Database.Redis.Sentinel

    No documentation available.

  2. data PortID

    hedis Database.Redis.Sentinel

    No documentation available.

  3. PortNumber :: PortNumber -> PortID

    hedis Database.Redis.Sentinel

    No documentation available.

  4. data PubSub

    hedis Database.Redis.Sentinel

    Encapsulates subscription changes. Use subscribe, unsubscribe, psubscribe, punsubscribe or mempty to construct a value. Combine values by using the Monoid interface, i.e. mappend and mconcat.

  5. data PubSubController

    hedis Database.Redis.Sentinel

    A controller that stores a set of channels, pattern channels, and callbacks. It allows you to manage Pub/Sub subscriptions and pattern subscriptions and alter them at any time throughout the life of your program. You should typically create the controller at the start of your program and then store it through the life of your program, using addChannels and removeChannels to update the current subscriptions.

  6. data Proxy (t :: k)

    relude Relude.Base

    Proxy is a type that holds no data, but has a phantom parameter of arbitrary type (or even kind). Its use is to provide type information, even though there is no value available of that type (or it may be too costly to create one). Historically, Proxy :: Proxy a is a safer alternative to the undefined :: a idiom.

    >>> Proxy :: Proxy (Void, Int -> Int)
    Proxy
    
    Proxy can even hold types of higher kinds,
    >>> Proxy :: Proxy Either
    Proxy
    
    >>> Proxy :: Proxy Functor
    Proxy
    
    >>> Proxy :: Proxy complicatedStructure
    Proxy
    

  7. Proxy :: Proxy (t :: k)

    relude Relude.Base

    No documentation available.

  8. newtype Product a

    relude Relude.Monoid

    Monoid under multiplication.

    Product x <> Product y == Product (x * y)
    

    Examples

    >>> Product 3 <> Product 4 <> mempty
    Product {getProduct = 12}
    
    >>> mconcat [ Product n | n <- [2 .. 10]]
    Product {getProduct = 3628800}
    

  9. Product :: a -> Product a

    relude Relude.Monoid

    No documentation available.

  10. module Relude.Print

    Functions like putStr and putStrLn but for Text, LText, ByteString and LByteString.

Page 329 of many | Previous | Next