definition: |
neg :: BinInt -> BinInt neg Zero = Zero neg (Pos x) = Neg x neg (Neg x) = Pos x |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Unary minus. Usually written as "- e". |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Zero}) |-> {Zero} || ({Pos}) |-> {Neg} || ({Neg}) |-> {Pos}} |
name: |
neg |
precedence: |
no precedence defined |
result-values: |
{Neg,Pos,Zero} |
signature: |
BinInt -> BinInt |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |