| 22 | #include "rmath.h" |
| 23 | |
| 24 | FloorFunction::FloorFunction() : Function("floor") |
| 25 | { |
| 26 | addDescription(tr("Returns the number value rounded down to the nearest integer.")); |
| 27 | addParameter("value"); |
| 28 | } |
| 29 | |
| 30 | Value& FloorFunction::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected