( expr: LatexString | ExpressionInput, vars?: string | Iterable<string> | Expression | Iterable<Expression>, options?: FreeFunctionOptions )
| 141 | } |
| 142 | |
| 143 | export function solve( |
| 144 | expr: LatexString | ExpressionInput, |
| 145 | vars?: string | Iterable<string> | Expression | Iterable<Expression>, |
| 146 | options?: FreeFunctionOptions |
| 147 | ): |
| 148 | | null |
| 149 | | ReadonlyArray<Expression> |
| 150 | | Record<string, Expression> |
| 151 | | Array<Record<string, Expression>> { |
| 152 | return toExpression(expr, options).solve(vars); |
| 153 | } |
| 154 | |
| 155 | export function expandAll( |
| 156 | expr: LatexString | ExpressionInput, |
no test coverage detected