cos static method

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

Implementation

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