negate method

RadFloat negate(
  1. dynamic i
)

Implementation

RadFloat negate(dynamic i) => RadFloat((_value > 0) ? -_value : _value.abs());