CurryInfo: rw-data-generator-2.0.0 / RW.Build.varName

definition:
varName :: Int -> String
varName j | j < 26    = [['a'..]!!j]                                   -- a,...,z
          | otherwise = [['a'..]!!(j `mod` 26)] ++ (show $ j `div` 26) -- b1,...,z1,b2,...,z2,...
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Generates a var name for a given index
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
varName
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