definition: |
mul :: Nat -> Nat -> Nat mul Z _ = Z mul (S m) n = add n (mul m n) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Multiplication on natural numbers. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Z},_) |-> {Z} || ({S},_) |-> _} |
name: |
mul |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Nat -> Nat -> Nat |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |