floor static method

dynamic floor(
  1. dynamic v
)

向下取整

Implementation

static floor(v) {
  return v.floor();
}