definition:
|
dtRoot :: DefTree f -> Either VarIdx f
dtRoot (Leaf r) = rRoot r
dtRoot (Branch pat _ _) = tRoot pat
dtRoot (Or pat _) = tRoot pat
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the root symbol (variable or constructor) of a definitional tree.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Leaf}) |-> {Left,Right} || ({Branch}) |-> {Left,Right} || ({Or}) |-> {Left,Right}}
|
name:
|
dtRoot
|
precedence:
|
no precedence defined
|
result-values:
|
{Left,Right}
|
signature:
|
DefTree a -> Prelude.Either Prelude.Int a
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|