definition:
|
checkWithValues4 :: (Show a, Show b, Show c, Show d) =>
Config -> String -> [a] -> [b] -> [c] -> [d]
-> (a -> b -> c -> d -> Prop) -> IO Bool
checkWithValues4 config msg xs ys zs1 zs2 p =
check config msg
(forValues xs (\x -> forValues ys
(\y -> forValues zs1
(\z1 -> forValues zs2 (p x y z1)))))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Checks a property parameterized over four arguments
--- with a given configuration (first argument)
--- a name for the test (second argument),
--- and all values given in the further arguments.
--- Returns a flag whether the test was successful.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_,_,_,_,_) |-> _}
|
name:
|
checkWithValues4
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Prelude.Show a, Prelude.Show b, Prelude.Show c, Prelude.Show d) => Config
-> String -> [a] -> [b] -> [c] -> [d] -> (a -> b -> c -> d
-> Test.Prop.Types.Prop) -> Prelude.IO Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|