log static method

Creates a function expression which evaluates to the base 10 log of the given numeric expression.

Implementation

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