floor function.
static assert((-0.01).floor == -1); static assert(real(0).floor == 0); static assert(0.01.floor == 0);
See Implementation
floor function.