template <typename T>
T DivUp(
T x,
T y
);
| Name | Description |
|---|---|
| T | Type representing a numeric value |
| Name | Description | |
|---|---|---|
| in | x | Value to be divided by y |
| in | y | The value that x is to be divided by |
Calculates the quotient from the division of two values. If there is a remainder, it is rounded up.
CONFIDENTIAL