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.

  1. forAllProperties :: Q Exp

    massiv-test Test.Massiv.Utils

    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 [].

  2. forAllShow :: Testable prop => Gen a -> (a -> String) -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Like forAll, but with an explicitly given show function.

  3. forAllShrink :: (Show a, Testable prop) => Gen a -> (a -> [a]) -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Like forAll, but tries to shrink the argument for failing test cases.

  4. forAllShrinkBlind :: Testable prop => Gen a -> (a -> [a]) -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Like forAllShrink, but without printing the generated value.

  5. forAllShrinkShow :: Testable prop => Gen a -> (a -> [a]) -> (a -> String) -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Like forAllShrink, but with an explicitly given show function.

  6. forM :: (Context a, Context b, Monad m) => Matrix a -> (a -> m b) -> m (Matrix b)

    matrices Data.Matrix

    No documentation available.

  7. forM_ :: (Context a, Monad m) => Matrix a -> (a -> m b) -> m ()

    matrices Data.Matrix

    No documentation available.

  8. force :: Context a => Matrix a -> Matrix a

    matrices Data.Matrix

    No documentation available.

  9. forM :: forall (v :: Type -> Type) a b m . (Vector v a, Vector v b, Monad m) => Matrix v a -> (a -> m b) -> m (Matrix v b)

    matrices Data.Matrix.Generic

    No documentation available.

  10. forM_ :: forall (v :: Type -> Type) a m b . (Vector v a, Monad m) => Matrix v a -> (a -> m b) -> m ()

    matrices Data.Matrix.Generic

    No documentation available.

Page 87 of many | Previous | Next