operator / method

TValue operator /(
  1. Decimal divisor
)

Divides this value by divisor.

Implementation

TValue operator /(Decimal divisor) => createValue(baseValue / divisor);