floor function

int floor(
  1. double x
)

Implementation

int floor(double x) {
    return x.floor();
}