Interface IComputeEngineInternal
interface IComputeEngine { _BIGNUM_HALF : Decimal ; _BIGNUM_NAN : Decimal ; _BIGNUM_NEGATIVE_ONE : Decimal ; _BIGNUM_ONE : Decimal ; _BIGNUM_PI : Decimal ; _BIGNUM_TWO : Decimal ; _BIGNUM_ZERO : Decimal ; Anything : BoxedDomain ; bignum : ( ( a : bigint | Value ) => Decimal ) ; Booleans : BoxedDomain ; complex : ( ( a : number | Complex ,
b ?: number ) => Complex ) ; ComplexInfinity : BoxedExpression ; context : null | RuntimeScope ; costFunction : ( ( expr : BoxedExpression ) => number ) ; deadline ?: number ; E : BoxedExpression ; False : BoxedExpression ; Half : BoxedExpression ; I : BoxedExpression ; iterationLimit : number ; latexDictionary : readonly LatexDictionaryEntry [] ; NaN : BoxedExpression ; NegativeInfinity : BoxedExpression ; NegativeOne : BoxedExpression ; Nothing : BoxedExpression ; Numbers : BoxedDomain ; numericMode : NumericMode ; One : BoxedExpression ; Pi : BoxedExpression ; PositiveInfinity : BoxedExpression ; recursionLimit : number ; stats : ComputeEngineStats ; strict : boolean ; Strings : BoxedDomain ; timeLimit : number ; tolerance : number ; True : BoxedExpression ; Void : BoxedDomain ; Zero : BoxedExpression ; get assumptions (): ExpressionMapInterface < boolean > ; jsonSerializationOptions : Readonly < JsonSerializationOptions > ; latexOptions : NumberFormattingOptions & ParseLatexOptions & SerializeLatexOptions ; precision : number ; _fn ( head : string | BoxedExpression ,
ops : BoxedExpression [] ,
metadata ?: Metadata ) : BoxedExpression ; _register ( expr : BoxedExpression ) : void ; _unregister ( expr : BoxedExpression ) : void ; add ( ops : BoxedExpression [] ,
metadata ?: Metadata ) : BoxedExpression ; array ( elements : ArrayValue [] | ArrayValue [] [] ,
metadata ?: Metadata ) : BoxedExpression ; ask ( pattern : SemiBoxedExpression ) : BoxedSubstitution [] ; assign ( ids : { [
id :
string ]
: AssignValue ; } ) : IComputeEngine ; assign ( id : string ,
value : AssignValue ) : IComputeEngine ; assign ( arg1 : string | { [
id :
string ]
: AssignValue ; } ,
arg2 ?: AssignValue ) : IComputeEngine ; assume ( predicate : SemiBoxedExpression ) : AssumeResult ; box ( expr : SemiBoxedExpression | [ num
: number , denom
: number ] ,
options ?: { canonical ?: boolean | CanonicalForm | CanonicalForm [] ; } ) : BoxedExpression ; cache < T > ( name : string ,
build : ( ( ) => T ) ,
purge ?: ( ( T : any ) => undefined | T ) ) : T ; canonical ( xs : SemiBoxedExpression [] ) : BoxedExpression [] ; checkContinueExecution ( ) : void ; chop ( n : number ) : number ; chop ( n : Decimal ) : 0 | Decimal ; chop ( n : Complex ) : 0 | Complex ; chop ( n : number | Decimal | Complex ) : number | Decimal | Complex ; declare ( identifiers : { [
id :
string ]
: | BoxedDomain | DomainExpression | SymbolDefinition | FunctionDefinition ; } ) : IComputeEngine ; declare ( id : string ,
def : | SymbolDefinition | FunctionDefinition | BoxedDomain | DomainExpression < SemiBoxedExpression > ) : IComputeEngine ; declare ( arg1 : string | { [
id :
string ]
: | BoxedDomain | DomainExpression | SymbolDefinition | FunctionDefinition ; } ,
arg2 ?: | SymbolDefinition | FunctionDefinition | BoxedDomain | DomainExpression < SemiBoxedExpression > ) : IComputeEngine ; defineFunction ( name : string ,
def : FunctionDefinition ) : BoxedFunctionDefinition ; defineSymbol ( name : string ,
def : SymbolDefinition ) : BoxedSymbolDefinition ; div ( num : BoxedExpression ,
denom : BoxedExpression ,
metadata ?: Metadata ) : BoxedExpression ; domain ( domain : BoxedDomain | DomainExpression < SemiBoxedExpression > ,
metadata ?: Metadata ) : BoxedDomain ; domainError ( expectedDomain : BoxedDomain | DomainLiteral ,
actualDomain : undefined | BoxedDomain ,
where ?: SemiBoxedExpression ) : BoxedExpression ; error ( message : string | [ string , ... SemiBoxedExpression [] ] ,
where ?: SemiBoxedExpression ) : BoxedExpression ; fn ( head : SemiBoxedExpression ,
ops : SemiBoxedExpression [] ,
options ?: { canonical : boolean ; } ) : BoxedExpression ; forget ( symbol ?: string | string [] ) : void ; hold ( expr : SemiBoxedExpression ) : BoxedExpression ; inv ( expr : BoxedExpression ,
metadata ?: Metadata ) : BoxedExpression ; isBignum ( a : unknown ) : a is Decimal ; isComplex ( a : unknown ) : a is Complex ; lookupFunction ( head : string | BoxedExpression ,
scope ?: null | RuntimeScope ) : undefined | BoxedFunctionDefinition ; lookupSymbol ( name : string ,
wikidata ?: string ,
scope ?: RuntimeScope ) : undefined | BoxedSymbolDefinition ; mul ( ops : BoxedExpression [] ,
metadata ?: Metadata ) : BoxedExpression ; neg ( expr : BoxedExpression ,
metadata ?: Metadata ) : BoxedExpression ; number ( value : | string | number | bigint | Decimal | Complex | MathJsonNumber | Rational ,
options ?: { canonical ?: boolean ; metadata ?: Metadata ; } ) : BoxedExpression ; pair ( first : BoxedExpression ,
second : BoxedExpression ,
metadata ?: Metadata ) : BoxedExpression ; parse ( s : string ,
options ?: { canonical ?: boolean | CanonicalForm | CanonicalForm [] ; } ) : BoxedExpression ; parse ( s : null ,
options ?: { canonical ?: boolean | CanonicalForm | CanonicalForm [] ; } ) : null ; parse ( s : null | string ,
options ?: { canonical ?: boolean | CanonicalForm | CanonicalForm [] ; } ) : null | BoxedExpression ; pattern ( expr : SemiBoxedExpression ) : Pattern ; popScope ( ) : IComputeEngine ; pow ( base : BoxedExpression ,
exponent : number | BoxedExpression | Rational ,
metadata ?: Metadata ) : BoxedExpression ; pushScope ( scope ?: Partial < Scope > ) : IComputeEngine ; reset ( ) : void ; resetContext ( ) : void ; rules ( rules : Rule [] ) : BoxedRuleSet ; serialize ( expr : SemiBoxedExpression ,
options ?: { canonical ?: boolean ; } ) : string ; shouldContinueExecution ( ) : boolean ; sqrt ( base : BoxedExpression ,
metadata ?: Metadata ) : BoxedExpression ; string ( s : string ,
metadata ?: Metadata ) : BoxedExpression ; swapScope ( scope : null | RuntimeScope ) : null | RuntimeScope ; symbol ( sym : string ,
options ?: { canonical ?: boolean ; metadata ?: Metadata ; } ) : BoxedExpression ; tuple ( elements : number [] ,
metadata ?: Metadata ) : BoxedExpression ; tuple ( elements : BoxedExpression [] ,
metadata ?: Metadata ) : BoxedExpression ; verify ( query : SemiBoxedExpression ) : boolean ; } Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1594 PropertiesReadonly
Internal
_BIGNUM_ HALF Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1624 Readonly
Internal
_BIGNUM_ NAN Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1616 Readonly
Internal
_BIGNUM_ NEGATIVE_ ONE Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1628 Readonly
Internal
_BIGNUM_ ONE Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1620 Readonly
Internal
_BIGNUM_ PI Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1626 Readonly
Internal
_BIGNUM_ TWO Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1622 Readonly
Internal
_BIGNUM_ ZERO Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1618 Readonly
Anything Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1596 bignum Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1648 Readonly
Booleans Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1599 complex Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1649 Readonly
Complex Infinity Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1614 context Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1630 cost Function Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1654 Optional
Internal
deadline deadline ?: number
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1634 Readonly
E Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1604 Readonly
False Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1602 Readonly
Half Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1608 Readonly
I Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1610 Readonly
Experimental
iteration Limit iteration Limit : number
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1638 latex Dictionary Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1595 Readonly
NaN Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1611 Readonly
Negative Infinity Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1613 Readonly
Negative One Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1609 Readonly
Nothing Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1605 Readonly
Numbers Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1600 numeric Mode Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1642 Readonly
One Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1607 Readonly
Pi Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1603 Readonly
Positive Infinity Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1612 Readonly
Experimental
recursion Limit recursion Limit : number
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1640 Readonly
stats Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1758 strict strict : boolean
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1655 Readonly
Strings Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1598 Readonly
Experimental
time Limit time Limit : number
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1636 tolerance tolerance : number
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1643 Readonly
True Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1601 Readonly
Void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1597 Readonly
Zero Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1606 Accessorsassumptions get assumptions( ) : ExpressionMapInterface < boolean > Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1749 json Serialization Options get jsonSerializationOptions( ) : Readonly < JsonSerializationOptions > Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1727 set jsonSerializationOptions( val ) : void Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1728 latex Options get latexOptions( ) : NumberFormattingOptions & ParseLatexOptions & SerializeLatexOptions Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1725 set latexOptions( opts ) : void Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1726 precision get precision( ) : number Returns number Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1653 set precision( p ) : void Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1652 Methods_fn _fn ( head , ops , metadata ? ) : BoxedExpression Internal
Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1696 _register _register ( expr ) : void Internal
Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1762 _unregister _unregister ( expr ) : void Internal
Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1764 add add ( ops , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1700 array array ( elements , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1710 ask ask ( pattern ) : BoxedSubstitution [] Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1750 assign assign ( ids ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1733 assign ( id , value ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1736 assign ( arg1 , arg2 ? ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1737 assume assume ( predicate ) : AssumeResult Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1747 box box ( expr , options ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1660 cache cache < T > ( name , build , purge ? ) : T Internal
Parameters name : string build : ( ( ) => T ) Optional
purge : ( ( T : any ) => undefined | T ) ( T ) : undefined | T Returns undefined | T Returns T Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1757 canonical canonical ( xs ) : BoxedExpression [] Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1663 check Continue Execution check Continue Execution ( ) : void Internal
Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1755 chop chop ( n ) : number Returns number Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1644 chop ( n ) : 0 | Decimal Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1645 chop ( n ) : 0 | Complex Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1646 chop ( n ) : number | Decimal | Complex Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1647 declare declare ( identifiers ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1740 declare ( id , def ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1743 declare ( arg1 , arg2 ? ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1744 define Function define Function ( name , def ) : BoxedFunctionDefinition Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1657 define Symbol define Symbol ( name , def ) : BoxedSymbolDefinition Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1656 div div ( num , denom , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1706 domain domain ( domain , metadata ? ) : BoxedDomain Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1673 domain Error domain Error ( expectedDomain , actualDomain , where ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1698 error error ( message , where ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1697 fn fn ( head , ops , options ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1681 forget forget ( symbol ? ) : void Parameters Optional
symbol : string | string [] Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1748 hold hold ( expr ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1699 inv inv ( expr , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1704 is Bignum is Bignum ( a ) : a is Decimal Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1650 is Complex is Complex ( a ) : a is Complex Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1651 lookup Function lookup Function ( head , scope ? ) : undefined | BoxedFunctionDefinition Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1659 lookup Symbol lookup Symbol ( name , wikidata ? , scope ? ) : undefined | BoxedSymbolDefinition Parameters name : string Optional
wikidata : string Optional
scope : RuntimeScope Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1658 mul mul ( ops , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1701 neg neg ( expr , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1705 number number ( value , options ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1664 pair pair ( first , second , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1707 parse parse ( s , options ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1713 parse ( s , options ? ) : null Returns null Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1716 parse ( s , options ? ) : null | BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1719 pattern pattern ( expr ) : Pattern Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1712 pop Scope pop Scope ( ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1730 pow pow ( base , exponent , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1702 push Scope push Scope ( scope ? ) : IComputeEngine Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1729 reset reset ( ) : void Internal
Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1760 reset Context reset Context ( ) : void Returns void Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1732 rules rules ( rules ) : BoxedRuleSet Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1711 serialize serialize ( expr , options ? ) : string Returns string Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1722 should Continue Execution should Continue Execution ( ) : boolean Internal
Returns boolean Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1753 sqrt sqrt ( base , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1703 string string ( s , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1672 swap Scope swap Scope ( scope ) : null | RuntimeScope Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1731 symbol symbol ( sym , options ? ) : BoxedExpression Parameters sym : string Optional
options : { canonical ?: boolean ; metadata ?: Metadata ; } Optional
canonical ?: boolean Optional
metadata ?: Metadata Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1668 tuple tuple ( elements , metadata ? ) : BoxedExpression Parameters elements : number [] Optional
metadata : Metadata Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1708 tuple ( elements , metadata ? ) : BoxedExpression Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1709 verify verify ( query ) : boolean Returns boolean Defined in node_modules/.pnpm/@cortex-js+compute-engine@0.22.0/node_modules/@cortex-js/compute-engine/dist/types/compute-engine/public.d.ts:1751
The current scope