@holgerengels/compute-engine
Version:
Symbolic computing and numeric evaluations for JavaScript and Node.js
11 lines (10 loc) • 330 B
TypeScript
/* 0.26.0-alpha2 */
import type { BoxedExpression, IComputeEngine } from '../public';
export declare class Terms {
private engine;
private terms;
constructor(ce: IComputeEngine, terms: ReadonlyArray<BoxedExpression>);
private add;
private find;
N(): BoxedExpression;
asExpression(): BoxedExpression;
}