ceil function

int ceil(
  1. num x
)

Rounds the given value x to an integer towards positive infinity.

Implementation

int ceil(num x) => x.ceil();