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. Pipe :: Protocol

    mysql Database.MySQL.Base

    No documentation available.

  2. data Protocol

    mysql Database.MySQL.Base

    No documentation available.

  3. Protocol :: Protocol -> Option

    mysql Database.MySQL.Base

    No documentation available.

  4. Pipe :: Protocol

    mysql Database.MySQL.Base.Types

    No documentation available.

  5. data Protocol

    mysql Database.MySQL.Base.Types

    No documentation available.

  6. Protocol :: Protocol -> Option

    mysql Database.MySQL.Base.Types

    No documentation available.

  7. module Arithmetic.Plus

    No documentation available.

  8. module Data.Prototype

    Support for OO-like prototypes.

  9. newtype Proto a

    oo-prototypes Data.Prototype

    A prototype. Typically the parameter will be a record type. Fields can be defined in terms of others fields, with the idea that some of these definitons can be overridden. Example:

    data O = O {f1, f2, f3 :: Int}
    deriving Show
    o1 = Proto $ \self -> O
    {
    f1 = 1,
    f2 = f1 self + 1,  -- 'f1 self' refers to the overriden definition of f1
    f3 = f1 self + 2
    }
    
    Calling extractValue o1 would then produce O {f1 = 1, f2 = 2, f3 = 3}.

  10. Proto :: (a -> a) -> Proto a

    oo-prototypes Data.Prototype

    No documentation available.

Page 580 of many | Previous | Next