subtract<E extends num> method
Subtracts other
from this number.
This does not set the value for this ActiveDouble.
Implementation
double subtract<E extends num>(E other) {
return _value - other;
}
Subtracts other
from this number.
This does not set the value for this ActiveDouble.
double subtract<E extends num>(E other) {
return _value - other;
}