|
inlineconstexpr |
Parameters
... xs : real arguments.tup: non empty tuple of arguments.c: Conditional expression masking the operation.m: Logical value masking the operation.Return value
The value of the difference of its first argument with the sum of the others
sub[saturated](...) computes a saturated version of add. Take care that for signed integral entries this kind of a is highly order dependant. This call perform saturated additions in reverse incoming order. We do not advise to use it for more than 2 parameters.sub[left](a, b) is semantically equivalent to sub(b, a)- is supported for two parameters, the - operator on standard scalar types is the original one and so can lead to automatic promotion.