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