( expr: LatexString | ExpressionInput, options?: FreeFunctionOptions )
| 95 | } |
| 96 | |
| 97 | export function evaluate( |
| 98 | expr: LatexString | ExpressionInput, |
| 99 | options?: FreeFunctionOptions |
| 100 | ): Expression { |
| 101 | return toExpression(expr, options).evaluate(); |
| 102 | } |
| 103 | |
| 104 | export function N( |
| 105 | expr: LatexString | ExpressionInput, |
nothing calls this directly
no test coverage detected