definition:
|
set5 :: (a1 -> a2 -> a3 -> a4 -> a5 -> b)
-> a1 -> a2 -> a3 -> a4 -> a5 -> Values b
#ifdef __KICS2__
set5 f x1 x2 x3 x4 x5 = set5With dfsStrategy f x1 x2 x3 x4 x5
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Combinator to transform a function of arity 5
--- into a corresponding set function.
|
failfree:
|
(_, _, _, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_) |-> {Values}}
|
name:
|
set5
|
precedence:
|
no precedence defined
|
result-values:
|
{Values}
|
signature:
|
(a -> b -> c -> d -> e -> f) -> a -> b -> c -> d -> e -> Values f
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|