CurryInfo: rewriting-3.0.0 / Rewriting.Rules.isDemandedAt

definition:
isDemandedAt :: Int -> Rule _ -> Bool
isDemandedAt _ (TermVar _, _)     = False
isDemandedAt i (TermCons _ ts, _) =
  i > 0 && i <= length ts && isConsTerm (ts !! (i - 1))
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Checks whether the given argument position of a rule is demanded. Returns
--- `True` if the corresponding argument term is a constructor term.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{(,)}) |-> _}
name:
isDemandedAt
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Int -> (Rewriting.Term.Term a, Rewriting.Term.Term a) -> Prelude.Bool
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term