operator ~/ method

Obj<int> operator ~/(
  1. Obj<num> other
)

Implementation

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