CurryInfo: easycheck-3.2.0 / Test.EasyCheck.Exec.checkWithValues5

definition:
checkWithValues5 :: (Show a, Show b, Show c, Show d, Show e) =>
                    Config -> String -> [a] -> [b] -> [c] -> [d] -> [e]
                 -> (a -> b -> c -> d -> e -> Prop) -> IO Bool
checkWithValues5 config msg xs ys zs1 zs2 zs3 p =
  check config msg
        (forValues xs (\x -> forValues ys
                      (\y -> forValues zs1
                      (\z1 -> forValues zs2
                      (\z2 -> forValues zs3 (p x y z1 z2))))))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Checks a property parameterized over five 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:
checkWithValues5
precedence:
no precedence defined
result-values:
_
signature:
(Prelude.Show a, Prelude.Show b, Prelude.Show c, Prelude.Show d, Prelude.Show e) => Config
-> String -> [a] -> [b] -> [c] -> [d] -> [e] -> (a -> b -> c -> d -> e
-> 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