add<E extends num> method

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

Adds other to this number.

This does not set the value for this ActiveDouble.

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

Implementation

double add<E extends num>(E other) {
  return _value + other;
}