floorTo method

T floorTo(
  1. num value
)

Floors this number to the nearest value.

Implementation

T floorTo(num value) => floor(this, value);