floor static method

Creates a function expression which evaluates to the floor of the given numeric expression.

Implementation

static ExpressionInterface floor(ExpressionInterface expression) =>
    UnaryExpression('floor()', expression);