-
Notifications
You must be signed in to change notification settings - Fork 30
Closed
Description
rescript-core/src/Core__Math.resi
Lines 295 to 307 in f042582
/** | |
ceil(v) returns the smallest `int` greater than or equal to the argument; | |
See [`Math.floor`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor) | |
on MDN. | |
## Examples | |
```rescript | |
Math.Int.ceil(3.7) == 4 | |
Math.Int.ceil(3.0) == 3 | |
Math.Int.ceil(-3.1) == -3 | |
``` | |
*/ |
Metadata
Metadata
Assignees
Labels
No labels