sin static method

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

Implementation

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