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.
-
mysql Database.MySQL.Base No documentation available.
-
mysql Database.MySQL.Base No documentation available.
Protocol :: Protocol -> Optionmysql Database.MySQL.Base No documentation available.
-
mysql Database.MySQL.Base.Types No documentation available.
-
mysql Database.MySQL.Base.Types No documentation available.
Protocol :: Protocol -> Optionmysql Database.MySQL.Base.Types No documentation available.
-
No documentation available.
-
Support for OO-like prototypes.
-
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}. -
oo-prototypes Data.Prototype No documentation available.