substract static method

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

Substraction operation

Implementation

static ValuableNumOperation<num> substract(
        Valuable<num> operand1, Valuable<num> operand2) =>
    ValuableNumOperation._(operand1, NumOperator.substract, operand2);