Treatment wrappingMul
std/ops/num::wrappingMul
Generics
◻ N:
WrappingMul
Inputs
⇥ a:
Stream<N>
⇥ b:
Stream<N>
Outputs
↦ prod:
Stream<N>
Multiply values from two streams, wrapping on bounds.
Values passed through a
& b
are multiplied and send in prod
.
This treatment is infaillible and wrap if a × b
reach boundary of the data type.