CurryInfo: rewriting-3.0.0 / Rewriting.Rules.maxVarInTRS

definition:
maxVarInTRS :: TRS _ -> Maybe VarIdx
maxVarInTRS trs = case mapMaybe maxVarInRule trs of
                    []       -> Nothing
                    vs@(_:_) -> Just (maximum vs)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Returns the maximum variable in a term rewriting system or `Nothing` if no
--- variable exists.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {Just,Nothing}}
name:
maxVarInTRS
precedence:
no precedence defined
result-values:
{Just,Nothing}
signature:
[(Rewriting.Term.Term a, Rewriting.Term.Term a)] -> Prelude.Maybe Prelude.Int
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term