definition:
|
addPartialArg :: Node -> NodeID -> Node
addPartialArg pnode arg = case pnode of
PartNode fc (PartFuncCall m) args ->
let nargs = args ++ [arg]
in if m == 1
then FuncNode fc nargs
else PartNode fc (PartFuncCall (m-1)) nargs
PartNode fc (PartConsCall m) args ->
let nargs = args ++ [arg]
in if m == 1
then ConsNode fc nargs
else PartNode fc (PartConsCall (m-1)) nargs
_ -> error "addPartialArg: node does not contain partial call"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Add an argument node to a node representing a partial call.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({PartNode},_) |-> {ConsNode,FuncNode,PartNode} || ({FuncNode},_) |-> _ || ({ConsNode},_) |-> _ || ({ChoiceNode},_) |-> _ || ({FreeNode},_) |-> _}
|
name:
|
addPartialArg
|
precedence:
|
no precedence defined
|
result-values:
|
{ConsNode,FuncNode,PartNode}
|
signature:
|
Node -> Prelude.Int -> Node
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|