CurryInfo: rewriting-3.0.0 / Rewriting.Term.tConsAll

definition:
tConsAll :: Term f -> [f]
tConsAll (TermVar _)     = []
tConsAll (TermCons c ts) = c : concatMap tConsAll ts
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Returns a list of all constructors in a term. The resulting list may
--- contain duplicates.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({TermVar}) |-> {[]} || ({TermCons}) |-> {:}}
name:
tConsAll
precedence:
no precedence defined
result-values:
{:,[]}
signature:
Term a -> [a]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms