sqrt static method

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

Implementation

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