CurryInfo: binint-3.0.0 / Data.BinInt.*^

definition:
(*^) :: Nat -> Nat -> Nat
IHi   *^ y = y
(O x) *^ y = O (x *^ y)
(I x) *^ y = y +^ (O (x *^ y))
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Multiplication, O(m*n)
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({IHi},_) |-> _ || ({O},_) |-> {O} || ({I},_) |-> {I,O}}
name:
*^
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