definition: |
tOp :: Term f -> f -> Term f -> Term f tOp l c r = TermCons c [l, r] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Returns an infix operator term with the given constructor and the given --- left and right argument term. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> {TermCons}} |
name: |
tOp |
precedence: |
no precedence defined |
result-values: |
{TermCons} |
signature: |
Term a -> a -> Term a -> Term a |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |