divide static method

ValuableNumOperation<double> divide(
  1. Valuable<num> operand1,
  2. Valuable<num> operand2
)

Division operation

Implementation

static ValuableNumOperation<double> divide(
        Valuable<num> operand1, Valuable<num> operand2) =>
    _ValuableDoubleOperation(operand1, NumOperator.divide, operand2);