definition:
|
selectDefTrees :: Eq f => [DefTree f] -> Term f -> [DefTree f]
selectDefTrees dts t = filter (eqConsPattern t . dtPattern) dts
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns a list of definitional trees with the same constructor pattern for
--- a term from the given list of definitional trees.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {:,[]}}
|
name:
|
selectDefTrees
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
Prelude.Eq a => [DefTree a] -> Rewriting.Term.Term a -> [DefTree a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|