definition:
|
codingI :: Int -> Int -> [Char]
codingI i cs | cs == 1 = "" -- No pattern matching needed for a
-- single-constructor type
| otherwise = prefix ++ result
where
l = logI (length coding) cs
result = codingI' i
prefix = replicate (l - length result) '0'
codingI' n = (if n < length coding
then ""
else codingI' (n `div` length coding)) ++
[coding !! (n `mod` length coding)]
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Used to encode a constructor index as a list of characters
--- (for pattern matching in the read function).
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
codingI
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> Prelude.Int -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|