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