operator / method

dynamic operator /(
  1. Result other
)

Divides two results.

Implementation

operator /(Result other) =>
    Result(clean: approximate() / other.approximate());