Treatment sub
std/ops/num::sub
Generics
◻ N:
Add
Inputs
⇥ a:
Stream<N>
⇥ b:
Stream<N>
Outputs
↦ diff:
Stream<N>
Substract values from two streams.
Values passed through b
are substracted to a
and send in diff
.
This treatment is infaillible but output may overflow if a - b
is out of bounds for the data type.