CurryInfo: binint-3.0.0 / Data.BinInt.succ

definition:
succ :: Nat -> Nat
succ IHi    = O IHi        -- 1       + 1 = 2
succ (O bs) = I bs         -- 2*n     + 1 = 2*n + 1
succ (I bs) = O (succ bs)  -- 2*n + 1 + 1 = 2*(n+1)
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Successor, O(n)
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({IHi}) |-> {O} || ({O}) |-> {I} || ({I}) |-> {O}}
name:
succ
precedence:
no precedence defined
result-values:
{I,O}
signature:
Nat -> Nat
solution-complete:
operationally complete operation
terminating:
yes
totally-defined:
reducible on all ground data terms