Subtract
Member of Floating Point Intrinsic Functions (PRIM_LIBI.IFloatingPointIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Float | Resulting number |
Object | *Input | Float | Value to be substracted |
Subtract subtracts the value specified in the Object parameter from the subject variable.
#Float := #Float.subtract(#Float2)
This is the same as writing
#Float -= #Float2
or
#Float := #Float - #Float2
Febuary 18 V14SP2