CurryInfo: rewriting-3.0.0 / Rewriting.Term.showVarIdx

definition:
showVarIdx :: VarIdx -> String
showVarIdx v | v >= 0    = if q == 0 then [c] else c : show q
             | otherwise = ""
  where
    (q, r) = divMod v 26
    c = "abcdefghijklmnopqrstuvwxyz" !! r
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Transforms a variable into a string representation.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {:,[]}}
name:
showVarIdx
precedence:
no precedence defined
result-values:
{:,[]}
signature:
Prelude.Int -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term