operator - method

dynamic operator -(
  1. dynamic other
)

Subtracts a value or another box algebraically.

Implementation

dynamic operator -(dynamic other) => (value as dynamic) - _extract(other);