divide<E extends num> method

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

Divides this number by other.

This does not set the value for this ActiveDouble.

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

Implementation

double divide<E extends num>(E other) {
  return _value / other;
}