definition: |
inc :: BinInt -> BinInt inc Zero = Pos IHi inc (Pos n) = Pos (succ n) inc (Neg IHi) = Zero inc (Neg (O n)) = Neg (pred (O n)) inc (Neg (I n)) = Neg (O n) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Increment |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Zero}) |-> {Pos} || ({Pos}) |-> {Pos} || ({Neg}) |-> {Neg,Zero}} |
name: |
inc |
precedence: |
no precedence defined |
result-values: |
{Neg,Pos,Zero} |
signature: |
BinInt -> BinInt |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |