definition:
|
(|>) :: Term f -> Pos -> Term f
t |> [] = t
TermCons _ ts |> (i:p) = (ts !! (i - 1)) |> p
TermVar _ |> (_:_) = error "(|>): A term variable has no subterms!"
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the subterm of a term at the given position if the position exists
--- within the term.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> _ || ({TermCons},{:}) |-> _}
|
name:
|
|>
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Rewriting.Term.Term a -> [Prelude.Int] -> Rewriting.Term.Term a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|