@tempots/std
biCeilDiv() function
Calculates the ceiling division of two BigInt numbers.
Signature:
biCeilDiv: (x: bigint, y: bigint) => bigint
Parameters
Parameter |
Type |
Description |
---|---|---|
x |
bigint |
The dividend. |
y |
bigint |
The divisor. |
Returns: bigint
The result of dividing x
by y
, rounded up to the nearest whole number.