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.
module Database.PostgreSQL.Consumers.
Consumer No documentation available.
-
consumers Database.PostgreSQL.Consumers.Consumer ID of a consumer.
-
consumers Database.PostgreSQL.Consumers.Consumer Register consumer in the consumers table, so that it can reserve jobs using acquired ID.
-
consumers Database.PostgreSQL.Consumers.Consumer Unregister consumer with a given ID.
msum :: (Foldable t, MonadPlus m) => t (m a) -> m acontrol-monad-free Control.Monad.Free The sum of a collection of actions using (<|>), generalizing concat. msum is just like asum, but specialised to MonadPlus.
Examples
Basic usage, using the MonadPlus instance for Maybe:>>> msum [Just "Hello", Nothing, Just "World"] Just "Hello"
assume :: PropRef Universal -> Proof acopilot-theorem Copilot.Theorem Assume that a property, given by reference, holds.
-
copilot-theorem Copilot.Theorem.Prove No documentation available.
assumptions :: BisimulationProofBundle sym -> [Pred sym]copilot-theorem Copilot.Theorem.What4 User-provided property assumptions
ecPointsMulAndSum :: EcGroup -> [(EcPoint, Integer)] -> EcPointcryptonite-openssl Crypto.OpenSSL.ECC compute sum ((q,m) -> q * m) l
ecPointsMulOfPowerAndSum :: EcGroup -> [EcPoint] -> Integer -> EcPointcryptonite-openssl Crypto.OpenSSL.ECC Compute the sum of the point to the nth power
f [p1,p2,..,pi] n = p1 * (n ^ 0) + p2 * (n ^ 1) + .. + pi * (n ^ i-1)