definition: |
mult2 :: BinInt -> BinInt mult2 (Pos n) = Pos (O n) mult2 Zero = Zero mult2 (Neg n) = Neg (O n) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Multiplication by 2 |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Pos}) |-> {Pos} || ({Zero}) |-> {Zero} || ({Neg}) |-> {Neg}} |
name: |
mult2 |
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 |