Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
liftCallCC' :: CallCC m (a, s) (b, s) -> CallCC (StateT s m) a btransformers Control.Monad.Trans.State.Strict In-situ lifting of a callCC operation to the new monad. This version uses the current state on entering the continuation. It does not satisfy the uniformity property (see Control.Monad.Signatures).
liftCallCC :: CallCC m (a, w) (b, w) -> CallCC (WriterT w m) a btransformers Control.Monad.Trans.Writer.CPS Uniform lifting of a callCC operation to the new monad. This version rolls back to the original state on entering the continuation.
liftCallCC :: Monoid w => CallCC m (a, w) (b, w) -> CallCC (WriterT w m) a btransformers Control.Monad.Trans.Writer.Lazy Lift a callCC operation to the new monad.
liftCallCC :: Monoid w => CallCC m (a, w) (b, w) -> CallCC (WriterT w m) a btransformers Control.Monad.Trans.Writer.Strict Lift a callCC operation to the new monad.
-
QuickCheck Test.QuickCheck Small x: generates values of x drawn from a small range. The opposite of Large.
-
QuickCheck Test.QuickCheck No documentation available.
forAll :: (Show a, Testable prop) => Gen a -> (a -> prop) -> PropertyQuickCheck Test.QuickCheck Explicit universal quantification: uses an explicitly given test case generator.
forAllBlind :: Testable prop => Gen a -> (a -> prop) -> PropertyQuickCheck Test.QuickCheck Like forAll, but without printing the generated value.
-
QuickCheck Test.QuickCheck Test all properties in the current module, using a custom quickCheck function. The same caveats as with quickCheckAll apply. $forAllProperties has type (Property -> IO Result) -> IO Bool. An example invocation is $forAllProperties quickCheckResult, which does the same thing as $quickCheckAll. forAllProperties has the same issue with scoping as quickCheckAll: see the note there about return [].
forAllShow :: Testable prop => Gen a -> (a -> String) -> (a -> prop) -> PropertyQuickCheck Test.QuickCheck Like forAll, but with an explicitly given show function.