subtract<E extends num> method

double subtract<E extends num>(
  1. E other
)

Subtracts other from this number.

This does not set the value for this EmpireDoubleProperty.

The result is an double, as described by double.-

Implementation

double subtract<E extends num>(E other) {
  return _value - other;
}