operator / method

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

Implementation

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