operator / method

Obj<double> operator /(
  1. Obj<num> other
)

Divides this number by other.

Implementation

Obj<double> operator /(Obj<num> other) => Obj(value / other.value);