ideas-1.6: Feedback services for intelligent tutoring systems

Maintainerbastiaan.heeren@ou.nl
Stabilityprovisional
Portabilityportable (depends on ghc)
Safe HaskellSafe
LanguageHaskell98

Ideas.Utils.QuickCheck

Contents

Description

Extensions to the QuickCheck library

Synopsis

Documentation

Data type

data ArbGen a Source #

Instances

Monoid (ArbGen a) Source # 

Methods

mempty :: ArbGen a #

mappend :: ArbGen a -> ArbGen a -> ArbGen a #

mconcat :: [ArbGen a] -> ArbGen a #

Constructors

arbGen :: Arbitrary b => (b -> a) -> ArbGen a Source #

constGens :: [a] -> ArbGen a Source #

unaryGen :: (a -> a) -> ArbGen a Source #

unaryGens :: [a -> a] -> ArbGen a Source #

unaryArbGen :: Arbitrary b => (b -> a -> a) -> ArbGen a Source #

binaryGen :: (a -> a -> a) -> ArbGen a Source #

binaryGens :: [a -> a -> a] -> ArbGen a Source #

Frequency combinators