CurryInfo: peano-1.1.0 / Data.Nat.toNat

definition:
toNat :: Int -> Nat
toNat n | n == 0 = Z
        | n > 0  = S (toNat (n - 1))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Transforms a standard integer into a natural number.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {S,Z}}
name:
toNat
precedence:
no precedence defined
result-values:
{S,Z}
signature:
Prelude.Int -> Nat
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term