definition:
|
invf4 :: (Data a, Data b, Data c, Data d, Data e) =>
(a -> b -> c -> d -> e) -> (e -> (a,b,c,d))
invf4 f y | f x1 x2 x3 x4 =:<= y = (x1,x2,x3,x4) where x1,x2,x3,x4 free
|
demand:
|
argument 6
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Inverts a function of arity 4.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_) |-> {(,,,)}}
|
name:
|
invf4
|
precedence:
|
no precedence defined
|
result-values:
|
{(,,,)}
|
signature:
|
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d, Prelude.Data e) => (a
-> b -> c -> d -> e) -> e -> (a, b, c, d)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|