@danielsimonjr/mathts-expression 0.4.5 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1518 -453
- package/dist/index.js +2061 -186
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NumberTypeConfig } from '@danielsimonjr/mathts-core/internal';
|
|
2
2
|
|
|
3
|
-
type TypedFunction$
|
|
3
|
+
type TypedFunction$k = ((...args: unknown[]) => unknown) & {
|
|
4
4
|
signatures: Record<string, (...args: unknown[]) => unknown>;
|
|
5
5
|
};
|
|
6
6
|
type TypedFunctionConstructor = {
|
|
@@ -99,7 +99,7 @@ interface FactoryMeta {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
type Scope$1 = Map<string, unknown>;
|
|
102
|
-
interface CompiledExpression$
|
|
102
|
+
interface CompiledExpression$9 {
|
|
103
103
|
evaluate: (scope?: Record<string, unknown>) => unknown;
|
|
104
104
|
}
|
|
105
105
|
type CompileFunction$7 = (scope: Scope$1, args: Record<string, unknown>, context: unknown) => unknown;
|
|
@@ -109,10 +109,10 @@ interface StringOptions$7 {
|
|
|
109
109
|
implicit?: 'hide' | 'show';
|
|
110
110
|
[key: string]: unknown;
|
|
111
111
|
}
|
|
112
|
-
interface Dependencies$
|
|
112
|
+
interface Dependencies$w {
|
|
113
113
|
mathWithTransform: Record<string, unknown>;
|
|
114
114
|
}
|
|
115
|
-
declare const createNode: FactoryFunction<Dependencies$
|
|
115
|
+
declare const createNode: FactoryFunction<Dependencies$w, {
|
|
116
116
|
new (): {
|
|
117
117
|
get type(): string;
|
|
118
118
|
get isNode(): boolean;
|
|
@@ -130,7 +130,7 @@ declare const createNode: FactoryFunction<Dependencies$7, {
|
|
|
130
130
|
* where scope is an optional object with
|
|
131
131
|
* variables.
|
|
132
132
|
*/
|
|
133
|
-
compile(): CompiledExpression$
|
|
133
|
+
compile(): CompiledExpression$9;
|
|
134
134
|
/**
|
|
135
135
|
* Compile a node into a JavaScript function.
|
|
136
136
|
* This basically pre-calculates as much as possible and only leaves open
|
|
@@ -352,7 +352,7 @@ interface ParseFunction {
|
|
|
352
352
|
isDigit(c: string): boolean;
|
|
353
353
|
}
|
|
354
354
|
/** The injected typed-function builder used to assemble `parse`. */
|
|
355
|
-
interface TypedFunction {
|
|
355
|
+
interface TypedFunction$j {
|
|
356
356
|
(name: string, signatures: Record<string, unknown>): ParseFunction;
|
|
357
357
|
addConversion(conversion: {
|
|
358
358
|
from: string;
|
|
@@ -363,7 +363,7 @@ interface TypedFunction {
|
|
|
363
363
|
/** Factory dependencies for createParse (typed builder, numeric parser,
|
|
364
364
|
* config, and the AST node constructors). */
|
|
365
365
|
interface ParseDependencies {
|
|
366
|
-
typed: TypedFunction;
|
|
366
|
+
typed: TypedFunction$j;
|
|
367
367
|
numeric: (value: string, type: string) => unknown;
|
|
368
368
|
config: NumberTypeConfig;
|
|
369
369
|
AccessorNode: NodeConstructor;
|
|
@@ -1889,7 +1889,743 @@ declare const embeddedDocs: {
|
|
|
1889
1889
|
examples: string[];
|
|
1890
1890
|
seealso: string[];
|
|
1891
1891
|
};
|
|
1892
|
-
fft: {
|
|
1892
|
+
fft: {
|
|
1893
|
+
name: string;
|
|
1894
|
+
category: string;
|
|
1895
|
+
syntax: string[];
|
|
1896
|
+
description: string;
|
|
1897
|
+
examples: string[];
|
|
1898
|
+
seealso: string[];
|
|
1899
|
+
};
|
|
1900
|
+
ifft: {
|
|
1901
|
+
name: string;
|
|
1902
|
+
category: string;
|
|
1903
|
+
syntax: string[];
|
|
1904
|
+
description: string;
|
|
1905
|
+
examples: string[];
|
|
1906
|
+
seealso: string[];
|
|
1907
|
+
};
|
|
1908
|
+
sylvester: {
|
|
1909
|
+
name: string;
|
|
1910
|
+
category: string;
|
|
1911
|
+
syntax: string[];
|
|
1912
|
+
description: string;
|
|
1913
|
+
examples: string[];
|
|
1914
|
+
seealso: string[];
|
|
1915
|
+
};
|
|
1916
|
+
schur: {
|
|
1917
|
+
name: string;
|
|
1918
|
+
category: string;
|
|
1919
|
+
syntax: string[];
|
|
1920
|
+
description: string;
|
|
1921
|
+
examples: string[];
|
|
1922
|
+
seealso: string[];
|
|
1923
|
+
};
|
|
1924
|
+
lyap: {
|
|
1925
|
+
name: string;
|
|
1926
|
+
category: string;
|
|
1927
|
+
syntax: string[];
|
|
1928
|
+
description: string;
|
|
1929
|
+
examples: string[];
|
|
1930
|
+
seealso: string[];
|
|
1931
|
+
};
|
|
1932
|
+
solveODE: {
|
|
1933
|
+
name: string;
|
|
1934
|
+
category: string;
|
|
1935
|
+
syntax: string[];
|
|
1936
|
+
description: string;
|
|
1937
|
+
examples: string[];
|
|
1938
|
+
seealso: string[];
|
|
1939
|
+
};
|
|
1940
|
+
bernoulli: {
|
|
1941
|
+
name: string;
|
|
1942
|
+
category: string;
|
|
1943
|
+
syntax: string[];
|
|
1944
|
+
description: string;
|
|
1945
|
+
examples: string[];
|
|
1946
|
+
seealso: string[];
|
|
1947
|
+
};
|
|
1948
|
+
combinations: {
|
|
1949
|
+
name: string;
|
|
1950
|
+
category: string;
|
|
1951
|
+
syntax: string[];
|
|
1952
|
+
description: string;
|
|
1953
|
+
examples: string[];
|
|
1954
|
+
seealso: string[];
|
|
1955
|
+
};
|
|
1956
|
+
combinationsWithRep: {
|
|
1957
|
+
name: string;
|
|
1958
|
+
category: string;
|
|
1959
|
+
syntax: string[];
|
|
1960
|
+
description: string;
|
|
1961
|
+
examples: string[];
|
|
1962
|
+
seealso: string[];
|
|
1963
|
+
};
|
|
1964
|
+
factorial: {
|
|
1965
|
+
name: string;
|
|
1966
|
+
category: string;
|
|
1967
|
+
syntax: string[];
|
|
1968
|
+
description: string;
|
|
1969
|
+
examples: string[];
|
|
1970
|
+
seealso: string[];
|
|
1971
|
+
};
|
|
1972
|
+
gamma: {
|
|
1973
|
+
name: string;
|
|
1974
|
+
category: string;
|
|
1975
|
+
syntax: string[];
|
|
1976
|
+
description: string;
|
|
1977
|
+
examples: string[];
|
|
1978
|
+
seealso: string[];
|
|
1979
|
+
};
|
|
1980
|
+
kldivergence: {
|
|
1981
|
+
name: string;
|
|
1982
|
+
category: string;
|
|
1983
|
+
syntax: string[];
|
|
1984
|
+
description: string;
|
|
1985
|
+
examples: string[];
|
|
1986
|
+
seealso: string[];
|
|
1987
|
+
};
|
|
1988
|
+
lgamma: {
|
|
1989
|
+
name: string;
|
|
1990
|
+
category: string;
|
|
1991
|
+
syntax: string[];
|
|
1992
|
+
description: string;
|
|
1993
|
+
examples: string[];
|
|
1994
|
+
seealso: string[];
|
|
1995
|
+
};
|
|
1996
|
+
multinomial: {
|
|
1997
|
+
name: string;
|
|
1998
|
+
category: string;
|
|
1999
|
+
syntax: string[];
|
|
2000
|
+
description: string;
|
|
2001
|
+
examples: string[];
|
|
2002
|
+
seealso: string[];
|
|
2003
|
+
};
|
|
2004
|
+
permutations: {
|
|
2005
|
+
name: string;
|
|
2006
|
+
category: string;
|
|
2007
|
+
syntax: string[];
|
|
2008
|
+
description: string;
|
|
2009
|
+
examples: string[];
|
|
2010
|
+
seealso: string[];
|
|
2011
|
+
};
|
|
2012
|
+
pickRandom: {
|
|
2013
|
+
name: string;
|
|
2014
|
+
category: string;
|
|
2015
|
+
syntax: string[];
|
|
2016
|
+
description: string;
|
|
2017
|
+
examples: string[];
|
|
2018
|
+
seealso: string[];
|
|
2019
|
+
};
|
|
2020
|
+
random: {
|
|
2021
|
+
name: string;
|
|
2022
|
+
category: string;
|
|
2023
|
+
syntax: string[];
|
|
2024
|
+
description: string;
|
|
2025
|
+
examples: string[];
|
|
2026
|
+
seealso: string[];
|
|
2027
|
+
};
|
|
2028
|
+
randomInt: {
|
|
2029
|
+
name: string;
|
|
2030
|
+
category: string;
|
|
2031
|
+
syntax: string[];
|
|
2032
|
+
description: string;
|
|
2033
|
+
examples: string[];
|
|
2034
|
+
seealso: string[];
|
|
2035
|
+
};
|
|
2036
|
+
compare: {
|
|
2037
|
+
name: string;
|
|
2038
|
+
category: string;
|
|
2039
|
+
syntax: string[];
|
|
2040
|
+
description: string;
|
|
2041
|
+
examples: string[];
|
|
2042
|
+
seealso: string[];
|
|
2043
|
+
};
|
|
2044
|
+
compareNatural: {
|
|
2045
|
+
name: string;
|
|
2046
|
+
category: string;
|
|
2047
|
+
syntax: string[];
|
|
2048
|
+
description: string;
|
|
2049
|
+
examples: string[];
|
|
2050
|
+
seealso: string[];
|
|
2051
|
+
};
|
|
2052
|
+
compareText: {
|
|
2053
|
+
name: string;
|
|
2054
|
+
category: string;
|
|
2055
|
+
syntax: string[];
|
|
2056
|
+
description: string;
|
|
2057
|
+
examples: string[];
|
|
2058
|
+
seealso: string[];
|
|
2059
|
+
};
|
|
2060
|
+
deepEqual: {
|
|
2061
|
+
name: string;
|
|
2062
|
+
category: string;
|
|
2063
|
+
syntax: string[];
|
|
2064
|
+
description: string;
|
|
2065
|
+
examples: string[];
|
|
2066
|
+
seealso: string[];
|
|
2067
|
+
};
|
|
2068
|
+
equal: {
|
|
2069
|
+
name: string;
|
|
2070
|
+
category: string;
|
|
2071
|
+
syntax: string[];
|
|
2072
|
+
description: string;
|
|
2073
|
+
examples: string[];
|
|
2074
|
+
seealso: string[];
|
|
2075
|
+
};
|
|
2076
|
+
equalText: {
|
|
2077
|
+
name: string;
|
|
2078
|
+
category: string;
|
|
2079
|
+
syntax: string[];
|
|
2080
|
+
description: string;
|
|
2081
|
+
examples: string[];
|
|
2082
|
+
seealso: string[];
|
|
2083
|
+
};
|
|
2084
|
+
larger: {
|
|
2085
|
+
name: string;
|
|
2086
|
+
category: string;
|
|
2087
|
+
syntax: string[];
|
|
2088
|
+
description: string;
|
|
2089
|
+
examples: string[];
|
|
2090
|
+
seealso: string[];
|
|
2091
|
+
};
|
|
2092
|
+
largerEq: {
|
|
2093
|
+
name: string;
|
|
2094
|
+
category: string;
|
|
2095
|
+
syntax: string[];
|
|
2096
|
+
description: string;
|
|
2097
|
+
examples: string[];
|
|
2098
|
+
seealso: string[];
|
|
2099
|
+
};
|
|
2100
|
+
smaller: {
|
|
2101
|
+
name: string;
|
|
2102
|
+
category: string;
|
|
2103
|
+
syntax: string[];
|
|
2104
|
+
description: string;
|
|
2105
|
+
examples: string[];
|
|
2106
|
+
seealso: string[];
|
|
2107
|
+
};
|
|
2108
|
+
smallerEq: {
|
|
2109
|
+
name: string;
|
|
2110
|
+
category: string;
|
|
2111
|
+
syntax: string[];
|
|
2112
|
+
description: string;
|
|
2113
|
+
examples: string[];
|
|
2114
|
+
seealso: string[];
|
|
2115
|
+
};
|
|
2116
|
+
unequal: {
|
|
2117
|
+
name: string;
|
|
2118
|
+
category: string;
|
|
2119
|
+
syntax: string[];
|
|
2120
|
+
description: string;
|
|
2121
|
+
examples: string[];
|
|
2122
|
+
seealso: string[];
|
|
2123
|
+
};
|
|
2124
|
+
setCartesian: {
|
|
2125
|
+
name: string;
|
|
2126
|
+
category: string;
|
|
2127
|
+
syntax: string[];
|
|
2128
|
+
description: string;
|
|
2129
|
+
examples: string[];
|
|
2130
|
+
seealso: string[];
|
|
2131
|
+
};
|
|
2132
|
+
setDifference: {
|
|
2133
|
+
name: string;
|
|
2134
|
+
category: string;
|
|
2135
|
+
syntax: string[];
|
|
2136
|
+
description: string;
|
|
2137
|
+
examples: string[];
|
|
2138
|
+
seealso: string[];
|
|
2139
|
+
};
|
|
2140
|
+
setDistinct: {
|
|
2141
|
+
name: string;
|
|
2142
|
+
category: string;
|
|
2143
|
+
syntax: string[];
|
|
2144
|
+
description: string;
|
|
2145
|
+
examples: string[];
|
|
2146
|
+
seealso: string[];
|
|
2147
|
+
};
|
|
2148
|
+
setIntersect: {
|
|
2149
|
+
name: string;
|
|
2150
|
+
category: string;
|
|
2151
|
+
syntax: string[];
|
|
2152
|
+
description: string;
|
|
2153
|
+
examples: string[];
|
|
2154
|
+
seealso: string[];
|
|
2155
|
+
};
|
|
2156
|
+
setIsSubset: {
|
|
2157
|
+
name: string;
|
|
2158
|
+
category: string;
|
|
2159
|
+
syntax: string[];
|
|
2160
|
+
description: string;
|
|
2161
|
+
examples: string[];
|
|
2162
|
+
seealso: string[];
|
|
2163
|
+
};
|
|
2164
|
+
setMultiplicity: {
|
|
2165
|
+
name: string;
|
|
2166
|
+
category: string;
|
|
2167
|
+
syntax: string[];
|
|
2168
|
+
description: string;
|
|
2169
|
+
examples: string[];
|
|
2170
|
+
seealso: string[];
|
|
2171
|
+
};
|
|
2172
|
+
setPowerset: {
|
|
2173
|
+
name: string;
|
|
2174
|
+
category: string;
|
|
2175
|
+
syntax: string[];
|
|
2176
|
+
description: string;
|
|
2177
|
+
examples: string[];
|
|
2178
|
+
seealso: string[];
|
|
2179
|
+
};
|
|
2180
|
+
setSize: {
|
|
2181
|
+
name: string;
|
|
2182
|
+
category: string;
|
|
2183
|
+
syntax: string[];
|
|
2184
|
+
description: string;
|
|
2185
|
+
examples: string[];
|
|
2186
|
+
seealso: string[];
|
|
2187
|
+
};
|
|
2188
|
+
setSymDifference: {
|
|
2189
|
+
name: string;
|
|
2190
|
+
category: string;
|
|
2191
|
+
syntax: string[];
|
|
2192
|
+
description: string;
|
|
2193
|
+
examples: string[];
|
|
2194
|
+
seealso: string[];
|
|
2195
|
+
};
|
|
2196
|
+
setUnion: {
|
|
2197
|
+
name: string;
|
|
2198
|
+
category: string;
|
|
2199
|
+
syntax: string[];
|
|
2200
|
+
description: string;
|
|
2201
|
+
examples: string[];
|
|
2202
|
+
seealso: string[];
|
|
2203
|
+
};
|
|
2204
|
+
zpk2tf: {
|
|
2205
|
+
name: string;
|
|
2206
|
+
category: string;
|
|
2207
|
+
syntax: string[];
|
|
2208
|
+
description: string;
|
|
2209
|
+
examples: string[];
|
|
2210
|
+
seealso: string[];
|
|
2211
|
+
};
|
|
2212
|
+
freqz: {
|
|
2213
|
+
name: string;
|
|
2214
|
+
category: string;
|
|
2215
|
+
syntax: string[];
|
|
2216
|
+
description: string;
|
|
2217
|
+
examples: string[];
|
|
2218
|
+
seealso: string[];
|
|
2219
|
+
};
|
|
2220
|
+
erf: {
|
|
2221
|
+
name: string;
|
|
2222
|
+
category: string;
|
|
2223
|
+
syntax: string[];
|
|
2224
|
+
description: string;
|
|
2225
|
+
examples: string[];
|
|
2226
|
+
seealso: string[];
|
|
2227
|
+
};
|
|
2228
|
+
zeta: {
|
|
2229
|
+
name: string;
|
|
2230
|
+
category: string;
|
|
2231
|
+
syntax: string[];
|
|
2232
|
+
description: string;
|
|
2233
|
+
examples: string[];
|
|
2234
|
+
seealso: string[];
|
|
2235
|
+
};
|
|
2236
|
+
cumsum: {
|
|
2237
|
+
name: string;
|
|
2238
|
+
category: string;
|
|
2239
|
+
syntax: string[];
|
|
2240
|
+
description: string;
|
|
2241
|
+
examples: string[];
|
|
2242
|
+
seealso: string[];
|
|
2243
|
+
};
|
|
2244
|
+
mad: {
|
|
2245
|
+
name: string;
|
|
2246
|
+
category: string;
|
|
2247
|
+
syntax: string[];
|
|
2248
|
+
description: string;
|
|
2249
|
+
examples: string[];
|
|
2250
|
+
seealso: string[];
|
|
2251
|
+
};
|
|
2252
|
+
max: {
|
|
2253
|
+
name: string;
|
|
2254
|
+
category: string;
|
|
2255
|
+
syntax: string[];
|
|
2256
|
+
description: string;
|
|
2257
|
+
examples: string[];
|
|
2258
|
+
seealso: string[];
|
|
2259
|
+
};
|
|
2260
|
+
mean: {
|
|
2261
|
+
name: string;
|
|
2262
|
+
category: string;
|
|
2263
|
+
syntax: string[];
|
|
2264
|
+
description: string;
|
|
2265
|
+
examples: string[];
|
|
2266
|
+
seealso: string[];
|
|
2267
|
+
};
|
|
2268
|
+
median: {
|
|
2269
|
+
name: string;
|
|
2270
|
+
category: string;
|
|
2271
|
+
syntax: string[];
|
|
2272
|
+
description: string;
|
|
2273
|
+
examples: string[];
|
|
2274
|
+
seealso: string[];
|
|
2275
|
+
};
|
|
2276
|
+
min: {
|
|
2277
|
+
name: string;
|
|
2278
|
+
category: string;
|
|
2279
|
+
syntax: string[];
|
|
2280
|
+
description: string;
|
|
2281
|
+
examples: string[];
|
|
2282
|
+
seealso: string[];
|
|
2283
|
+
};
|
|
2284
|
+
mode: {
|
|
2285
|
+
name: string;
|
|
2286
|
+
category: string;
|
|
2287
|
+
syntax: string[];
|
|
2288
|
+
description: string;
|
|
2289
|
+
examples: string[];
|
|
2290
|
+
seealso: string[];
|
|
2291
|
+
};
|
|
2292
|
+
prod: {
|
|
2293
|
+
name: string;
|
|
2294
|
+
category: string;
|
|
2295
|
+
syntax: string[];
|
|
2296
|
+
description: string;
|
|
2297
|
+
examples: string[];
|
|
2298
|
+
seealso: string[];
|
|
2299
|
+
};
|
|
2300
|
+
quantileSeq: {
|
|
2301
|
+
name: string;
|
|
2302
|
+
category: string;
|
|
2303
|
+
syntax: string[];
|
|
2304
|
+
description: string;
|
|
2305
|
+
examples: string[];
|
|
2306
|
+
seealso: string[];
|
|
2307
|
+
};
|
|
2308
|
+
std: {
|
|
2309
|
+
name: string;
|
|
2310
|
+
category: string;
|
|
2311
|
+
syntax: string[];
|
|
2312
|
+
description: string;
|
|
2313
|
+
examples: string[];
|
|
2314
|
+
seealso: string[];
|
|
2315
|
+
};
|
|
2316
|
+
sum: {
|
|
2317
|
+
name: string;
|
|
2318
|
+
category: string;
|
|
2319
|
+
syntax: string[];
|
|
2320
|
+
description: string;
|
|
2321
|
+
examples: string[];
|
|
2322
|
+
seealso: string[];
|
|
2323
|
+
};
|
|
2324
|
+
variance: {
|
|
2325
|
+
name: string;
|
|
2326
|
+
category: string;
|
|
2327
|
+
syntax: string[];
|
|
2328
|
+
description: string;
|
|
2329
|
+
examples: string[];
|
|
2330
|
+
seealso: string[];
|
|
2331
|
+
};
|
|
2332
|
+
corr: {
|
|
2333
|
+
name: string;
|
|
2334
|
+
category: string;
|
|
2335
|
+
syntax: string[];
|
|
2336
|
+
description: string;
|
|
2337
|
+
examples: string[];
|
|
2338
|
+
seealso: string[];
|
|
2339
|
+
};
|
|
2340
|
+
acos: {
|
|
2341
|
+
name: string;
|
|
2342
|
+
category: string;
|
|
2343
|
+
syntax: string[];
|
|
2344
|
+
description: string;
|
|
2345
|
+
examples: string[];
|
|
2346
|
+
seealso: string[];
|
|
2347
|
+
};
|
|
2348
|
+
acosh: {
|
|
2349
|
+
name: string;
|
|
2350
|
+
category: string;
|
|
2351
|
+
syntax: string[];
|
|
2352
|
+
description: string;
|
|
2353
|
+
examples: string[];
|
|
2354
|
+
seealso: string[];
|
|
2355
|
+
};
|
|
2356
|
+
acot: {
|
|
2357
|
+
name: string;
|
|
2358
|
+
category: string;
|
|
2359
|
+
syntax: string[];
|
|
2360
|
+
description: string;
|
|
2361
|
+
examples: string[];
|
|
2362
|
+
seealso: string[];
|
|
2363
|
+
};
|
|
2364
|
+
acoth: {
|
|
2365
|
+
name: string;
|
|
2366
|
+
category: string;
|
|
2367
|
+
syntax: string[];
|
|
2368
|
+
description: string;
|
|
2369
|
+
examples: string[];
|
|
2370
|
+
seealso: string[];
|
|
2371
|
+
};
|
|
2372
|
+
acsc: {
|
|
2373
|
+
name: string;
|
|
2374
|
+
category: string;
|
|
2375
|
+
syntax: string[];
|
|
2376
|
+
description: string;
|
|
2377
|
+
examples: string[];
|
|
2378
|
+
seealso: string[];
|
|
2379
|
+
};
|
|
2380
|
+
acsch: {
|
|
2381
|
+
name: string;
|
|
2382
|
+
category: string;
|
|
2383
|
+
syntax: string[];
|
|
2384
|
+
description: string;
|
|
2385
|
+
examples: string[];
|
|
2386
|
+
seealso: string[];
|
|
2387
|
+
};
|
|
2388
|
+
asec: {
|
|
2389
|
+
name: string;
|
|
2390
|
+
category: string;
|
|
2391
|
+
syntax: string[];
|
|
2392
|
+
description: string;
|
|
2393
|
+
examples: string[];
|
|
2394
|
+
seealso: string[];
|
|
2395
|
+
};
|
|
2396
|
+
asech: {
|
|
2397
|
+
name: string;
|
|
2398
|
+
category: string;
|
|
2399
|
+
syntax: string[];
|
|
2400
|
+
description: string;
|
|
2401
|
+
examples: string[];
|
|
2402
|
+
seealso: string[];
|
|
2403
|
+
};
|
|
2404
|
+
asin: {
|
|
2405
|
+
name: string;
|
|
2406
|
+
category: string;
|
|
2407
|
+
syntax: string[];
|
|
2408
|
+
description: string;
|
|
2409
|
+
examples: string[];
|
|
2410
|
+
seealso: string[];
|
|
2411
|
+
};
|
|
2412
|
+
asinh: {
|
|
2413
|
+
name: string;
|
|
2414
|
+
category: string;
|
|
2415
|
+
syntax: string[];
|
|
2416
|
+
description: string;
|
|
2417
|
+
examples: string[];
|
|
2418
|
+
seealso: string[];
|
|
2419
|
+
};
|
|
2420
|
+
atan: {
|
|
2421
|
+
name: string;
|
|
2422
|
+
category: string;
|
|
2423
|
+
syntax: string[];
|
|
2424
|
+
description: string;
|
|
2425
|
+
examples: string[];
|
|
2426
|
+
seealso: string[];
|
|
2427
|
+
};
|
|
2428
|
+
atanh: {
|
|
2429
|
+
name: string;
|
|
2430
|
+
category: string;
|
|
2431
|
+
syntax: string[];
|
|
2432
|
+
description: string;
|
|
2433
|
+
examples: string[];
|
|
2434
|
+
seealso: string[];
|
|
2435
|
+
};
|
|
2436
|
+
atan2: {
|
|
2437
|
+
name: string;
|
|
2438
|
+
category: string;
|
|
2439
|
+
syntax: string[];
|
|
2440
|
+
description: string;
|
|
2441
|
+
examples: string[];
|
|
2442
|
+
seealso: string[];
|
|
2443
|
+
};
|
|
2444
|
+
cos: {
|
|
2445
|
+
name: string;
|
|
2446
|
+
category: string;
|
|
2447
|
+
syntax: string[];
|
|
2448
|
+
description: string;
|
|
2449
|
+
examples: string[];
|
|
2450
|
+
seealso: string[];
|
|
2451
|
+
};
|
|
2452
|
+
cosh: {
|
|
2453
|
+
name: string;
|
|
2454
|
+
category: string;
|
|
2455
|
+
syntax: string[];
|
|
2456
|
+
description: string;
|
|
2457
|
+
examples: string[];
|
|
2458
|
+
seealso: string[];
|
|
2459
|
+
};
|
|
2460
|
+
cot: {
|
|
2461
|
+
name: string;
|
|
2462
|
+
category: string;
|
|
2463
|
+
syntax: string[];
|
|
2464
|
+
description: string;
|
|
2465
|
+
examples: string[];
|
|
2466
|
+
seealso: string[];
|
|
2467
|
+
};
|
|
2468
|
+
coth: {
|
|
2469
|
+
name: string;
|
|
2470
|
+
category: string;
|
|
2471
|
+
syntax: string[];
|
|
2472
|
+
description: string;
|
|
2473
|
+
examples: string[];
|
|
2474
|
+
seealso: string[];
|
|
2475
|
+
};
|
|
2476
|
+
csc: {
|
|
2477
|
+
name: string;
|
|
2478
|
+
category: string;
|
|
2479
|
+
syntax: string[];
|
|
2480
|
+
description: string;
|
|
2481
|
+
examples: string[];
|
|
2482
|
+
seealso: string[];
|
|
2483
|
+
};
|
|
2484
|
+
csch: {
|
|
2485
|
+
name: string;
|
|
2486
|
+
category: string;
|
|
2487
|
+
syntax: string[];
|
|
2488
|
+
description: string;
|
|
2489
|
+
examples: string[];
|
|
2490
|
+
seealso: string[];
|
|
2491
|
+
};
|
|
2492
|
+
sec: {
|
|
2493
|
+
name: string;
|
|
2494
|
+
category: string;
|
|
2495
|
+
syntax: string[];
|
|
2496
|
+
description: string;
|
|
2497
|
+
examples: string[];
|
|
2498
|
+
seealso: string[];
|
|
2499
|
+
};
|
|
2500
|
+
sech: {
|
|
2501
|
+
name: string;
|
|
2502
|
+
category: string;
|
|
2503
|
+
syntax: string[];
|
|
2504
|
+
description: string;
|
|
2505
|
+
examples: string[];
|
|
2506
|
+
seealso: string[];
|
|
2507
|
+
};
|
|
2508
|
+
sin: {
|
|
2509
|
+
name: string;
|
|
2510
|
+
category: string;
|
|
2511
|
+
syntax: string[];
|
|
2512
|
+
description: string;
|
|
2513
|
+
examples: string[];
|
|
2514
|
+
seealso: string[];
|
|
2515
|
+
};
|
|
2516
|
+
sinh: {
|
|
2517
|
+
name: string;
|
|
2518
|
+
category: string;
|
|
2519
|
+
syntax: string[];
|
|
2520
|
+
description: string;
|
|
2521
|
+
examples: string[];
|
|
2522
|
+
seealso: string[];
|
|
2523
|
+
};
|
|
2524
|
+
tan: {
|
|
2525
|
+
name: string;
|
|
2526
|
+
category: string;
|
|
2527
|
+
syntax: string[];
|
|
2528
|
+
description: string;
|
|
2529
|
+
examples: string[];
|
|
2530
|
+
seealso: string[];
|
|
2531
|
+
};
|
|
2532
|
+
tanh: {
|
|
2533
|
+
name: string;
|
|
2534
|
+
category: string;
|
|
2535
|
+
syntax: string[];
|
|
2536
|
+
description: string;
|
|
2537
|
+
examples: string[];
|
|
2538
|
+
seealso: string[];
|
|
2539
|
+
};
|
|
2540
|
+
to: {
|
|
2541
|
+
name: string;
|
|
2542
|
+
category: string;
|
|
2543
|
+
syntax: string[];
|
|
2544
|
+
description: string;
|
|
2545
|
+
examples: string[];
|
|
2546
|
+
seealso: string[];
|
|
2547
|
+
};
|
|
2548
|
+
toBest: {
|
|
2549
|
+
name: string;
|
|
2550
|
+
category: string;
|
|
2551
|
+
syntax: string[];
|
|
2552
|
+
description: string;
|
|
2553
|
+
examples: string[];
|
|
2554
|
+
seealso: string[];
|
|
2555
|
+
};
|
|
2556
|
+
clone: {
|
|
2557
|
+
name: string;
|
|
2558
|
+
category: string;
|
|
2559
|
+
syntax: string[];
|
|
2560
|
+
description: string;
|
|
2561
|
+
examples: string[];
|
|
2562
|
+
seealso: string[];
|
|
2563
|
+
};
|
|
2564
|
+
format: {
|
|
2565
|
+
name: string;
|
|
2566
|
+
category: string;
|
|
2567
|
+
syntax: string[];
|
|
2568
|
+
description: string;
|
|
2569
|
+
examples: string[];
|
|
2570
|
+
seealso: string[];
|
|
2571
|
+
};
|
|
2572
|
+
bin: {
|
|
2573
|
+
name: string;
|
|
2574
|
+
category: string;
|
|
2575
|
+
syntax: string[];
|
|
2576
|
+
description: string;
|
|
2577
|
+
examples: string[];
|
|
2578
|
+
seealso: string[];
|
|
2579
|
+
};
|
|
2580
|
+
oct: {
|
|
2581
|
+
name: string;
|
|
2582
|
+
category: string;
|
|
2583
|
+
syntax: string[];
|
|
2584
|
+
description: string;
|
|
2585
|
+
examples: string[];
|
|
2586
|
+
seealso: string[];
|
|
2587
|
+
};
|
|
2588
|
+
hex: {
|
|
2589
|
+
name: string;
|
|
2590
|
+
category: string;
|
|
2591
|
+
syntax: string[];
|
|
2592
|
+
description: string;
|
|
2593
|
+
examples: string[];
|
|
2594
|
+
seealso: string[];
|
|
2595
|
+
};
|
|
2596
|
+
isNaN: {
|
|
2597
|
+
name: string;
|
|
2598
|
+
category: string;
|
|
2599
|
+
syntax: string[];
|
|
2600
|
+
description: string;
|
|
2601
|
+
examples: string[];
|
|
2602
|
+
seealso: string[];
|
|
2603
|
+
};
|
|
2604
|
+
isBounded: {
|
|
2605
|
+
name: string;
|
|
2606
|
+
category: string;
|
|
2607
|
+
syntax: string[];
|
|
2608
|
+
description: string;
|
|
2609
|
+
examples: string[];
|
|
2610
|
+
seealso: string[];
|
|
2611
|
+
};
|
|
2612
|
+
isFinite: {
|
|
2613
|
+
name: string;
|
|
2614
|
+
category: string;
|
|
2615
|
+
syntax: string[];
|
|
2616
|
+
description: string;
|
|
2617
|
+
examples: string[];
|
|
2618
|
+
seealso: string[];
|
|
2619
|
+
};
|
|
2620
|
+
isInteger: {
|
|
2621
|
+
name: string;
|
|
2622
|
+
category: string;
|
|
2623
|
+
syntax: string[];
|
|
2624
|
+
description: string;
|
|
2625
|
+
examples: string[];
|
|
2626
|
+
seealso: string[];
|
|
2627
|
+
};
|
|
2628
|
+
isNegative: {
|
|
1893
2629
|
name: string;
|
|
1894
2630
|
category: string;
|
|
1895
2631
|
syntax: string[];
|
|
@@ -1897,7 +2633,7 @@ declare const embeddedDocs: {
|
|
|
1897
2633
|
examples: string[];
|
|
1898
2634
|
seealso: string[];
|
|
1899
2635
|
};
|
|
1900
|
-
|
|
2636
|
+
isNumeric: {
|
|
1901
2637
|
name: string;
|
|
1902
2638
|
category: string;
|
|
1903
2639
|
syntax: string[];
|
|
@@ -1905,7 +2641,7 @@ declare const embeddedDocs: {
|
|
|
1905
2641
|
examples: string[];
|
|
1906
2642
|
seealso: string[];
|
|
1907
2643
|
};
|
|
1908
|
-
|
|
2644
|
+
hasNumericValue: {
|
|
1909
2645
|
name: string;
|
|
1910
2646
|
category: string;
|
|
1911
2647
|
syntax: string[];
|
|
@@ -1913,7 +2649,7 @@ declare const embeddedDocs: {
|
|
|
1913
2649
|
examples: string[];
|
|
1914
2650
|
seealso: string[];
|
|
1915
2651
|
};
|
|
1916
|
-
|
|
2652
|
+
isPositive: {
|
|
1917
2653
|
name: string;
|
|
1918
2654
|
category: string;
|
|
1919
2655
|
syntax: string[];
|
|
@@ -1921,7 +2657,7 @@ declare const embeddedDocs: {
|
|
|
1921
2657
|
examples: string[];
|
|
1922
2658
|
seealso: string[];
|
|
1923
2659
|
};
|
|
1924
|
-
|
|
2660
|
+
isPrime: {
|
|
1925
2661
|
name: string;
|
|
1926
2662
|
category: string;
|
|
1927
2663
|
syntax: string[];
|
|
@@ -1929,7 +2665,7 @@ declare const embeddedDocs: {
|
|
|
1929
2665
|
examples: string[];
|
|
1930
2666
|
seealso: string[];
|
|
1931
2667
|
};
|
|
1932
|
-
|
|
2668
|
+
isZero: {
|
|
1933
2669
|
name: string;
|
|
1934
2670
|
category: string;
|
|
1935
2671
|
syntax: string[];
|
|
@@ -1937,7 +2673,7 @@ declare const embeddedDocs: {
|
|
|
1937
2673
|
examples: string[];
|
|
1938
2674
|
seealso: string[];
|
|
1939
2675
|
};
|
|
1940
|
-
|
|
2676
|
+
print: {
|
|
1941
2677
|
name: string;
|
|
1942
2678
|
category: string;
|
|
1943
2679
|
syntax: string[];
|
|
@@ -1945,7 +2681,7 @@ declare const embeddedDocs: {
|
|
|
1945
2681
|
examples: string[];
|
|
1946
2682
|
seealso: string[];
|
|
1947
2683
|
};
|
|
1948
|
-
|
|
2684
|
+
typeOf: {
|
|
1949
2685
|
name: string;
|
|
1950
2686
|
category: string;
|
|
1951
2687
|
syntax: string[];
|
|
@@ -1953,7 +2689,7 @@ declare const embeddedDocs: {
|
|
|
1953
2689
|
examples: string[];
|
|
1954
2690
|
seealso: string[];
|
|
1955
2691
|
};
|
|
1956
|
-
|
|
2692
|
+
numeric: {
|
|
1957
2693
|
name: string;
|
|
1958
2694
|
category: string;
|
|
1959
2695
|
syntax: string[];
|
|
@@ -1961,7 +2697,7 @@ declare const embeddedDocs: {
|
|
|
1961
2697
|
examples: string[];
|
|
1962
2698
|
seealso: string[];
|
|
1963
2699
|
};
|
|
1964
|
-
|
|
2700
|
+
apart: {
|
|
1965
2701
|
name: string;
|
|
1966
2702
|
category: string;
|
|
1967
2703
|
syntax: string[];
|
|
@@ -1969,7 +2705,7 @@ declare const embeddedDocs: {
|
|
|
1969
2705
|
examples: string[];
|
|
1970
2706
|
seealso: string[];
|
|
1971
2707
|
};
|
|
1972
|
-
|
|
2708
|
+
cancel: {
|
|
1973
2709
|
name: string;
|
|
1974
2710
|
category: string;
|
|
1975
2711
|
syntax: string[];
|
|
@@ -1977,7 +2713,7 @@ declare const embeddedDocs: {
|
|
|
1977
2713
|
examples: string[];
|
|
1978
2714
|
seealso: string[];
|
|
1979
2715
|
};
|
|
1980
|
-
|
|
2716
|
+
coefficientList: {
|
|
1981
2717
|
name: string;
|
|
1982
2718
|
category: string;
|
|
1983
2719
|
syntax: string[];
|
|
@@ -1985,7 +2721,7 @@ declare const embeddedDocs: {
|
|
|
1985
2721
|
examples: string[];
|
|
1986
2722
|
seealso: string[];
|
|
1987
2723
|
};
|
|
1988
|
-
|
|
2724
|
+
collect: {
|
|
1989
2725
|
name: string;
|
|
1990
2726
|
category: string;
|
|
1991
2727
|
syntax: string[];
|
|
@@ -1993,7 +2729,7 @@ declare const embeddedDocs: {
|
|
|
1993
2729
|
examples: string[];
|
|
1994
2730
|
seealso: string[];
|
|
1995
2731
|
};
|
|
1996
|
-
|
|
2732
|
+
combine: {
|
|
1997
2733
|
name: string;
|
|
1998
2734
|
category: string;
|
|
1999
2735
|
syntax: string[];
|
|
@@ -2001,7 +2737,7 @@ declare const embeddedDocs: {
|
|
|
2001
2737
|
examples: string[];
|
|
2002
2738
|
seealso: string[];
|
|
2003
2739
|
};
|
|
2004
|
-
|
|
2740
|
+
complexExpand: {
|
|
2005
2741
|
name: string;
|
|
2006
2742
|
category: string;
|
|
2007
2743
|
syntax: string[];
|
|
@@ -2009,7 +2745,7 @@ declare const embeddedDocs: {
|
|
|
2009
2745
|
examples: string[];
|
|
2010
2746
|
seealso: string[];
|
|
2011
2747
|
};
|
|
2012
|
-
|
|
2748
|
+
degree: {
|
|
2013
2749
|
name: string;
|
|
2014
2750
|
category: string;
|
|
2015
2751
|
syntax: string[];
|
|
@@ -2017,7 +2753,7 @@ declare const embeddedDocs: {
|
|
|
2017
2753
|
examples: string[];
|
|
2018
2754
|
seealso: string[];
|
|
2019
2755
|
};
|
|
2020
|
-
|
|
2756
|
+
differences: {
|
|
2021
2757
|
name: string;
|
|
2022
2758
|
category: string;
|
|
2023
2759
|
syntax: string[];
|
|
@@ -2025,7 +2761,7 @@ declare const embeddedDocs: {
|
|
|
2025
2761
|
examples: string[];
|
|
2026
2762
|
seealso: string[];
|
|
2027
2763
|
};
|
|
2028
|
-
|
|
2764
|
+
discriminant: {
|
|
2029
2765
|
name: string;
|
|
2030
2766
|
category: string;
|
|
2031
2767
|
syntax: string[];
|
|
@@ -2033,7 +2769,7 @@ declare const embeddedDocs: {
|
|
|
2033
2769
|
examples: string[];
|
|
2034
2770
|
seealso: string[];
|
|
2035
2771
|
};
|
|
2036
|
-
|
|
2772
|
+
element: {
|
|
2037
2773
|
name: string;
|
|
2038
2774
|
category: string;
|
|
2039
2775
|
syntax: string[];
|
|
@@ -2041,7 +2777,7 @@ declare const embeddedDocs: {
|
|
|
2041
2777
|
examples: string[];
|
|
2042
2778
|
seealso: string[];
|
|
2043
2779
|
};
|
|
2044
|
-
|
|
2780
|
+
eliminate: {
|
|
2045
2781
|
name: string;
|
|
2046
2782
|
category: string;
|
|
2047
2783
|
syntax: string[];
|
|
@@ -2049,7 +2785,7 @@ declare const embeddedDocs: {
|
|
|
2049
2785
|
examples: string[];
|
|
2050
2786
|
seealso: string[];
|
|
2051
2787
|
};
|
|
2052
|
-
|
|
2788
|
+
expToTrig: {
|
|
2053
2789
|
name: string;
|
|
2054
2790
|
category: string;
|
|
2055
2791
|
syntax: string[];
|
|
@@ -2057,7 +2793,7 @@ declare const embeddedDocs: {
|
|
|
2057
2793
|
examples: string[];
|
|
2058
2794
|
seealso: string[];
|
|
2059
2795
|
};
|
|
2060
|
-
|
|
2796
|
+
expand: {
|
|
2061
2797
|
name: string;
|
|
2062
2798
|
category: string;
|
|
2063
2799
|
syntax: string[];
|
|
@@ -2065,7 +2801,7 @@ declare const embeddedDocs: {
|
|
|
2065
2801
|
examples: string[];
|
|
2066
2802
|
seealso: string[];
|
|
2067
2803
|
};
|
|
2068
|
-
|
|
2804
|
+
factor: {
|
|
2069
2805
|
name: string;
|
|
2070
2806
|
category: string;
|
|
2071
2807
|
syntax: string[];
|
|
@@ -2073,7 +2809,7 @@ declare const embeddedDocs: {
|
|
|
2073
2809
|
examples: string[];
|
|
2074
2810
|
seealso: string[];
|
|
2075
2811
|
};
|
|
2076
|
-
|
|
2812
|
+
fullSimplify: {
|
|
2077
2813
|
name: string;
|
|
2078
2814
|
category: string;
|
|
2079
2815
|
syntax: string[];
|
|
@@ -2081,7 +2817,7 @@ declare const embeddedDocs: {
|
|
|
2081
2817
|
examples: string[];
|
|
2082
2818
|
seealso: string[];
|
|
2083
2819
|
};
|
|
2084
|
-
|
|
2820
|
+
functionExpand: {
|
|
2085
2821
|
name: string;
|
|
2086
2822
|
category: string;
|
|
2087
2823
|
syntax: string[];
|
|
@@ -2089,7 +2825,7 @@ declare const embeddedDocs: {
|
|
|
2089
2825
|
examples: string[];
|
|
2090
2826
|
seealso: string[];
|
|
2091
2827
|
};
|
|
2092
|
-
|
|
2828
|
+
normalForm: {
|
|
2093
2829
|
name: string;
|
|
2094
2830
|
category: string;
|
|
2095
2831
|
syntax: string[];
|
|
@@ -2097,7 +2833,7 @@ declare const embeddedDocs: {
|
|
|
2097
2833
|
examples: string[];
|
|
2098
2834
|
seealso: string[];
|
|
2099
2835
|
};
|
|
2100
|
-
|
|
2836
|
+
partialDerivative: {
|
|
2101
2837
|
name: string;
|
|
2102
2838
|
category: string;
|
|
2103
2839
|
syntax: string[];
|
|
@@ -2105,7 +2841,7 @@ declare const embeddedDocs: {
|
|
|
2105
2841
|
examples: string[];
|
|
2106
2842
|
seealso: string[];
|
|
2107
2843
|
};
|
|
2108
|
-
|
|
2844
|
+
polyadd: {
|
|
2109
2845
|
name: string;
|
|
2110
2846
|
category: string;
|
|
2111
2847
|
syntax: string[];
|
|
@@ -2113,7 +2849,7 @@ declare const embeddedDocs: {
|
|
|
2113
2849
|
examples: string[];
|
|
2114
2850
|
seealso: string[];
|
|
2115
2851
|
};
|
|
2116
|
-
|
|
2852
|
+
polyder: {
|
|
2117
2853
|
name: string;
|
|
2118
2854
|
category: string;
|
|
2119
2855
|
syntax: string[];
|
|
@@ -2121,7 +2857,7 @@ declare const embeddedDocs: {
|
|
|
2121
2857
|
examples: string[];
|
|
2122
2858
|
seealso: string[];
|
|
2123
2859
|
};
|
|
2124
|
-
|
|
2860
|
+
polymul: {
|
|
2125
2861
|
name: string;
|
|
2126
2862
|
category: string;
|
|
2127
2863
|
syntax: string[];
|
|
@@ -2129,7 +2865,7 @@ declare const embeddedDocs: {
|
|
|
2129
2865
|
examples: string[];
|
|
2130
2866
|
seealso: string[];
|
|
2131
2867
|
};
|
|
2132
|
-
|
|
2868
|
+
polynomialGCD: {
|
|
2133
2869
|
name: string;
|
|
2134
2870
|
category: string;
|
|
2135
2871
|
syntax: string[];
|
|
@@ -2137,7 +2873,7 @@ declare const embeddedDocs: {
|
|
|
2137
2873
|
examples: string[];
|
|
2138
2874
|
seealso: string[];
|
|
2139
2875
|
};
|
|
2140
|
-
|
|
2876
|
+
polynomialLCM: {
|
|
2141
2877
|
name: string;
|
|
2142
2878
|
category: string;
|
|
2143
2879
|
syntax: string[];
|
|
@@ -2145,7 +2881,7 @@ declare const embeddedDocs: {
|
|
|
2145
2881
|
examples: string[];
|
|
2146
2882
|
seealso: string[];
|
|
2147
2883
|
};
|
|
2148
|
-
|
|
2884
|
+
polynomialQuotient: {
|
|
2149
2885
|
name: string;
|
|
2150
2886
|
category: string;
|
|
2151
2887
|
syntax: string[];
|
|
@@ -2153,7 +2889,7 @@ declare const embeddedDocs: {
|
|
|
2153
2889
|
examples: string[];
|
|
2154
2890
|
seealso: string[];
|
|
2155
2891
|
};
|
|
2156
|
-
|
|
2892
|
+
polynomialRemainder: {
|
|
2157
2893
|
name: string;
|
|
2158
2894
|
category: string;
|
|
2159
2895
|
syntax: string[];
|
|
@@ -2161,7 +2897,7 @@ declare const embeddedDocs: {
|
|
|
2161
2897
|
examples: string[];
|
|
2162
2898
|
seealso: string[];
|
|
2163
2899
|
};
|
|
2164
|
-
|
|
2900
|
+
polyval: {
|
|
2165
2901
|
name: string;
|
|
2166
2902
|
category: string;
|
|
2167
2903
|
syntax: string[];
|
|
@@ -2169,7 +2905,7 @@ declare const embeddedDocs: {
|
|
|
2169
2905
|
examples: string[];
|
|
2170
2906
|
seealso: string[];
|
|
2171
2907
|
};
|
|
2172
|
-
|
|
2908
|
+
powerExpand: {
|
|
2173
2909
|
name: string;
|
|
2174
2910
|
category: string;
|
|
2175
2911
|
syntax: string[];
|
|
@@ -2177,7 +2913,7 @@ declare const embeddedDocs: {
|
|
|
2177
2913
|
examples: string[];
|
|
2178
2914
|
seealso: string[];
|
|
2179
2915
|
};
|
|
2180
|
-
|
|
2916
|
+
reduce: {
|
|
2181
2917
|
name: string;
|
|
2182
2918
|
category: string;
|
|
2183
2919
|
syntax: string[];
|
|
@@ -2185,7 +2921,7 @@ declare const embeddedDocs: {
|
|
|
2185
2921
|
examples: string[];
|
|
2186
2922
|
seealso: string[];
|
|
2187
2923
|
};
|
|
2188
|
-
|
|
2924
|
+
resultant: {
|
|
2189
2925
|
name: string;
|
|
2190
2926
|
category: string;
|
|
2191
2927
|
syntax: string[];
|
|
@@ -2193,7 +2929,7 @@ declare const embeddedDocs: {
|
|
|
2193
2929
|
examples: string[];
|
|
2194
2930
|
seealso: string[];
|
|
2195
2931
|
};
|
|
2196
|
-
|
|
2932
|
+
substitute: {
|
|
2197
2933
|
name: string;
|
|
2198
2934
|
category: string;
|
|
2199
2935
|
syntax: string[];
|
|
@@ -2201,7 +2937,7 @@ declare const embeddedDocs: {
|
|
|
2201
2937
|
examples: string[];
|
|
2202
2938
|
seealso: string[];
|
|
2203
2939
|
};
|
|
2204
|
-
|
|
2940
|
+
tangentLine: {
|
|
2205
2941
|
name: string;
|
|
2206
2942
|
category: string;
|
|
2207
2943
|
syntax: string[];
|
|
@@ -2209,7 +2945,7 @@ declare const embeddedDocs: {
|
|
|
2209
2945
|
examples: string[];
|
|
2210
2946
|
seealso: string[];
|
|
2211
2947
|
};
|
|
2212
|
-
|
|
2948
|
+
together: {
|
|
2213
2949
|
name: string;
|
|
2214
2950
|
category: string;
|
|
2215
2951
|
syntax: string[];
|
|
@@ -2217,7 +2953,7 @@ declare const embeddedDocs: {
|
|
|
2217
2953
|
examples: string[];
|
|
2218
2954
|
seealso: string[];
|
|
2219
2955
|
};
|
|
2220
|
-
|
|
2956
|
+
trigExpand: {
|
|
2221
2957
|
name: string;
|
|
2222
2958
|
category: string;
|
|
2223
2959
|
syntax: string[];
|
|
@@ -2225,7 +2961,7 @@ declare const embeddedDocs: {
|
|
|
2225
2961
|
examples: string[];
|
|
2226
2962
|
seealso: string[];
|
|
2227
2963
|
};
|
|
2228
|
-
|
|
2964
|
+
trigReduce: {
|
|
2229
2965
|
name: string;
|
|
2230
2966
|
category: string;
|
|
2231
2967
|
syntax: string[];
|
|
@@ -2233,7 +2969,7 @@ declare const embeddedDocs: {
|
|
|
2233
2969
|
examples: string[];
|
|
2234
2970
|
seealso: string[];
|
|
2235
2971
|
};
|
|
2236
|
-
|
|
2972
|
+
trigToExp: {
|
|
2237
2973
|
name: string;
|
|
2238
2974
|
category: string;
|
|
2239
2975
|
syntax: string[];
|
|
@@ -2241,7 +2977,7 @@ declare const embeddedDocs: {
|
|
|
2241
2977
|
examples: string[];
|
|
2242
2978
|
seealso: string[];
|
|
2243
2979
|
};
|
|
2244
|
-
|
|
2980
|
+
variables: {
|
|
2245
2981
|
name: string;
|
|
2246
2982
|
category: string;
|
|
2247
2983
|
syntax: string[];
|
|
@@ -2249,7 +2985,7 @@ declare const embeddedDocs: {
|
|
|
2249
2985
|
examples: string[];
|
|
2250
2986
|
seealso: string[];
|
|
2251
2987
|
};
|
|
2252
|
-
|
|
2988
|
+
doubleFactorial: {
|
|
2253
2989
|
name: string;
|
|
2254
2990
|
category: string;
|
|
2255
2991
|
syntax: string[];
|
|
@@ -2257,7 +2993,7 @@ declare const embeddedDocs: {
|
|
|
2257
2993
|
examples: string[];
|
|
2258
2994
|
seealso: string[];
|
|
2259
2995
|
};
|
|
2260
|
-
|
|
2996
|
+
fallingFactorial: {
|
|
2261
2997
|
name: string;
|
|
2262
2998
|
category: string;
|
|
2263
2999
|
syntax: string[];
|
|
@@ -2265,7 +3001,7 @@ declare const embeddedDocs: {
|
|
|
2265
3001
|
examples: string[];
|
|
2266
3002
|
seealso: string[];
|
|
2267
3003
|
};
|
|
2268
|
-
|
|
3004
|
+
fibonacci: {
|
|
2269
3005
|
name: string;
|
|
2270
3006
|
category: string;
|
|
2271
3007
|
syntax: string[];
|
|
@@ -2273,7 +3009,7 @@ declare const embeddedDocs: {
|
|
|
2273
3009
|
examples: string[];
|
|
2274
3010
|
seealso: string[];
|
|
2275
3011
|
};
|
|
2276
|
-
|
|
3012
|
+
lucas: {
|
|
2277
3013
|
name: string;
|
|
2278
3014
|
category: string;
|
|
2279
3015
|
syntax: string[];
|
|
@@ -2281,7 +3017,7 @@ declare const embeddedDocs: {
|
|
|
2281
3017
|
examples: string[];
|
|
2282
3018
|
seealso: string[];
|
|
2283
3019
|
};
|
|
2284
|
-
|
|
3020
|
+
risingFactorial: {
|
|
2285
3021
|
name: string;
|
|
2286
3022
|
category: string;
|
|
2287
3023
|
syntax: string[];
|
|
@@ -2289,7 +3025,7 @@ declare const embeddedDocs: {
|
|
|
2289
3025
|
examples: string[];
|
|
2290
3026
|
seealso: string[];
|
|
2291
3027
|
};
|
|
2292
|
-
|
|
3028
|
+
subfactorial: {
|
|
2293
3029
|
name: string;
|
|
2294
3030
|
category: string;
|
|
2295
3031
|
syntax: string[];
|
|
@@ -2297,7 +3033,7 @@ declare const embeddedDocs: {
|
|
|
2297
3033
|
examples: string[];
|
|
2298
3034
|
seealso: string[];
|
|
2299
3035
|
};
|
|
2300
|
-
|
|
3036
|
+
angle2D: {
|
|
2301
3037
|
name: string;
|
|
2302
3038
|
category: string;
|
|
2303
3039
|
syntax: string[];
|
|
@@ -2305,7 +3041,7 @@ declare const embeddedDocs: {
|
|
|
2305
3041
|
examples: string[];
|
|
2306
3042
|
seealso: string[];
|
|
2307
3043
|
};
|
|
2308
|
-
|
|
3044
|
+
angle3D: {
|
|
2309
3045
|
name: string;
|
|
2310
3046
|
category: string;
|
|
2311
3047
|
syntax: string[];
|
|
@@ -2313,7 +3049,7 @@ declare const embeddedDocs: {
|
|
|
2313
3049
|
examples: string[];
|
|
2314
3050
|
seealso: string[];
|
|
2315
3051
|
};
|
|
2316
|
-
|
|
3052
|
+
convexHull: {
|
|
2317
3053
|
name: string;
|
|
2318
3054
|
category: string;
|
|
2319
3055
|
syntax: string[];
|
|
@@ -2321,7 +3057,7 @@ declare const embeddedDocs: {
|
|
|
2321
3057
|
examples: string[];
|
|
2322
3058
|
seealso: string[];
|
|
2323
3059
|
};
|
|
2324
|
-
|
|
3060
|
+
cross3D: {
|
|
2325
3061
|
name: string;
|
|
2326
3062
|
category: string;
|
|
2327
3063
|
syntax: string[];
|
|
@@ -2329,7 +3065,7 @@ declare const embeddedDocs: {
|
|
|
2329
3065
|
examples: string[];
|
|
2330
3066
|
seealso: string[];
|
|
2331
3067
|
};
|
|
2332
|
-
|
|
3068
|
+
distance2D: {
|
|
2333
3069
|
name: string;
|
|
2334
3070
|
category: string;
|
|
2335
3071
|
syntax: string[];
|
|
@@ -2337,7 +3073,7 @@ declare const embeddedDocs: {
|
|
|
2337
3073
|
examples: string[];
|
|
2338
3074
|
seealso: string[];
|
|
2339
3075
|
};
|
|
2340
|
-
|
|
3076
|
+
distance3D: {
|
|
2341
3077
|
name: string;
|
|
2342
3078
|
category: string;
|
|
2343
3079
|
syntax: string[];
|
|
@@ -2345,7 +3081,7 @@ declare const embeddedDocs: {
|
|
|
2345
3081
|
examples: string[];
|
|
2346
3082
|
seealso: string[];
|
|
2347
3083
|
};
|
|
2348
|
-
|
|
3084
|
+
distanceND: {
|
|
2349
3085
|
name: string;
|
|
2350
3086
|
category: string;
|
|
2351
3087
|
syntax: string[];
|
|
@@ -2353,7 +3089,7 @@ declare const embeddedDocs: {
|
|
|
2353
3089
|
examples: string[];
|
|
2354
3090
|
seealso: string[];
|
|
2355
3091
|
};
|
|
2356
|
-
|
|
3092
|
+
distancePointToLine2D: {
|
|
2357
3093
|
name: string;
|
|
2358
3094
|
category: string;
|
|
2359
3095
|
syntax: string[];
|
|
@@ -2361,7 +3097,7 @@ declare const embeddedDocs: {
|
|
|
2361
3097
|
examples: string[];
|
|
2362
3098
|
seealso: string[];
|
|
2363
3099
|
};
|
|
2364
|
-
|
|
3100
|
+
dot3D: {
|
|
2365
3101
|
name: string;
|
|
2366
3102
|
category: string;
|
|
2367
3103
|
syntax: string[];
|
|
@@ -2369,7 +3105,7 @@ declare const embeddedDocs: {
|
|
|
2369
3105
|
examples: string[];
|
|
2370
3106
|
seealso: string[];
|
|
2371
3107
|
};
|
|
2372
|
-
|
|
3108
|
+
intersectLines2D: {
|
|
2373
3109
|
name: string;
|
|
2374
3110
|
category: string;
|
|
2375
3111
|
syntax: string[];
|
|
@@ -2377,7 +3113,7 @@ declare const embeddedDocs: {
|
|
|
2377
3113
|
examples: string[];
|
|
2378
3114
|
seealso: string[];
|
|
2379
3115
|
};
|
|
2380
|
-
|
|
3116
|
+
intersectSegments2D: {
|
|
2381
3117
|
name: string;
|
|
2382
3118
|
category: string;
|
|
2383
3119
|
syntax: string[];
|
|
@@ -2385,7 +3121,7 @@ declare const embeddedDocs: {
|
|
|
2385
3121
|
examples: string[];
|
|
2386
3122
|
seealso: string[];
|
|
2387
3123
|
};
|
|
2388
|
-
|
|
3124
|
+
pointInPolygon: {
|
|
2389
3125
|
name: string;
|
|
2390
3126
|
category: string;
|
|
2391
3127
|
syntax: string[];
|
|
@@ -2393,7 +3129,7 @@ declare const embeddedDocs: {
|
|
|
2393
3129
|
examples: string[];
|
|
2394
3130
|
seealso: string[];
|
|
2395
3131
|
};
|
|
2396
|
-
|
|
3132
|
+
polygonArea: {
|
|
2397
3133
|
name: string;
|
|
2398
3134
|
category: string;
|
|
2399
3135
|
syntax: string[];
|
|
@@ -2401,7 +3137,7 @@ declare const embeddedDocs: {
|
|
|
2401
3137
|
examples: string[];
|
|
2402
3138
|
seealso: string[];
|
|
2403
3139
|
};
|
|
2404
|
-
|
|
3140
|
+
projectVector: {
|
|
2405
3141
|
name: string;
|
|
2406
3142
|
category: string;
|
|
2407
3143
|
syntax: string[];
|
|
@@ -2409,7 +3145,7 @@ declare const embeddedDocs: {
|
|
|
2409
3145
|
examples: string[];
|
|
2410
3146
|
seealso: string[];
|
|
2411
3147
|
};
|
|
2412
|
-
|
|
3148
|
+
reflectVector: {
|
|
2413
3149
|
name: string;
|
|
2414
3150
|
category: string;
|
|
2415
3151
|
syntax: string[];
|
|
@@ -2417,7 +3153,7 @@ declare const embeddedDocs: {
|
|
|
2417
3153
|
examples: string[];
|
|
2418
3154
|
seealso: string[];
|
|
2419
3155
|
};
|
|
2420
|
-
|
|
3156
|
+
rotateVector2D: {
|
|
2421
3157
|
name: string;
|
|
2422
3158
|
category: string;
|
|
2423
3159
|
syntax: string[];
|
|
@@ -2425,7 +3161,7 @@ declare const embeddedDocs: {
|
|
|
2425
3161
|
examples: string[];
|
|
2426
3162
|
seealso: string[];
|
|
2427
3163
|
};
|
|
2428
|
-
|
|
3164
|
+
rotateVector3D: {
|
|
2429
3165
|
name: string;
|
|
2430
3166
|
category: string;
|
|
2431
3167
|
syntax: string[];
|
|
@@ -2433,7 +3169,7 @@ declare const embeddedDocs: {
|
|
|
2433
3169
|
examples: string[];
|
|
2434
3170
|
seealso: string[];
|
|
2435
3171
|
};
|
|
2436
|
-
|
|
3172
|
+
triangleArea: {
|
|
2437
3173
|
name: string;
|
|
2438
3174
|
category: string;
|
|
2439
3175
|
syntax: string[];
|
|
@@ -2441,7 +3177,7 @@ declare const embeddedDocs: {
|
|
|
2441
3177
|
examples: string[];
|
|
2442
3178
|
seealso: string[];
|
|
2443
3179
|
};
|
|
2444
|
-
|
|
3180
|
+
cubicSpline: {
|
|
2445
3181
|
name: string;
|
|
2446
3182
|
category: string;
|
|
2447
3183
|
syntax: string[];
|
|
@@ -2449,7 +3185,7 @@ declare const embeddedDocs: {
|
|
|
2449
3185
|
examples: string[];
|
|
2450
3186
|
seealso: string[];
|
|
2451
3187
|
};
|
|
2452
|
-
|
|
3188
|
+
gaussQuad: {
|
|
2453
3189
|
name: string;
|
|
2454
3190
|
category: string;
|
|
2455
3191
|
syntax: string[];
|
|
@@ -2457,7 +3193,7 @@ declare const embeddedDocs: {
|
|
|
2457
3193
|
examples: string[];
|
|
2458
3194
|
seealso: string[];
|
|
2459
3195
|
};
|
|
2460
|
-
|
|
3196
|
+
hermiteInterp: {
|
|
2461
3197
|
name: string;
|
|
2462
3198
|
category: string;
|
|
2463
3199
|
syntax: string[];
|
|
@@ -2465,7 +3201,7 @@ declare const embeddedDocs: {
|
|
|
2465
3201
|
examples: string[];
|
|
2466
3202
|
seealso: string[];
|
|
2467
3203
|
};
|
|
2468
|
-
|
|
3204
|
+
lagrangeInterp: {
|
|
2469
3205
|
name: string;
|
|
2470
3206
|
category: string;
|
|
2471
3207
|
syntax: string[];
|
|
@@ -2473,7 +3209,7 @@ declare const embeddedDocs: {
|
|
|
2473
3209
|
examples: string[];
|
|
2474
3210
|
seealso: string[];
|
|
2475
3211
|
};
|
|
2476
|
-
|
|
3212
|
+
linearInterp: {
|
|
2477
3213
|
name: string;
|
|
2478
3214
|
category: string;
|
|
2479
3215
|
syntax: string[];
|
|
@@ -2481,7 +3217,7 @@ declare const embeddedDocs: {
|
|
|
2481
3217
|
examples: string[];
|
|
2482
3218
|
seealso: string[];
|
|
2483
3219
|
};
|
|
2484
|
-
|
|
3220
|
+
pchipInterp: {
|
|
2485
3221
|
name: string;
|
|
2486
3222
|
category: string;
|
|
2487
3223
|
syntax: string[];
|
|
@@ -2489,7 +3225,7 @@ declare const embeddedDocs: {
|
|
|
2489
3225
|
examples: string[];
|
|
2490
3226
|
seealso: string[];
|
|
2491
3227
|
};
|
|
2492
|
-
|
|
3228
|
+
polyFit: {
|
|
2493
3229
|
name: string;
|
|
2494
3230
|
category: string;
|
|
2495
3231
|
syntax: string[];
|
|
@@ -2497,7 +3233,7 @@ declare const embeddedDocs: {
|
|
|
2497
3233
|
examples: string[];
|
|
2498
3234
|
seealso: string[];
|
|
2499
3235
|
};
|
|
2500
|
-
|
|
3236
|
+
romberg: {
|
|
2501
3237
|
name: string;
|
|
2502
3238
|
category: string;
|
|
2503
3239
|
syntax: string[];
|
|
@@ -2505,7 +3241,7 @@ declare const embeddedDocs: {
|
|
|
2505
3241
|
examples: string[];
|
|
2506
3242
|
seealso: string[];
|
|
2507
3243
|
};
|
|
2508
|
-
|
|
3244
|
+
simpson: {
|
|
2509
3245
|
name: string;
|
|
2510
3246
|
category: string;
|
|
2511
3247
|
syntax: string[];
|
|
@@ -2513,7 +3249,7 @@ declare const embeddedDocs: {
|
|
|
2513
3249
|
examples: string[];
|
|
2514
3250
|
seealso: string[];
|
|
2515
3251
|
};
|
|
2516
|
-
|
|
3252
|
+
trapz: {
|
|
2517
3253
|
name: string;
|
|
2518
3254
|
category: string;
|
|
2519
3255
|
syntax: string[];
|
|
@@ -2521,7 +3257,7 @@ declare const embeddedDocs: {
|
|
|
2521
3257
|
examples: string[];
|
|
2522
3258
|
seealso: string[];
|
|
2523
3259
|
};
|
|
2524
|
-
|
|
3260
|
+
bernoulliPMF: {
|
|
2525
3261
|
name: string;
|
|
2526
3262
|
category: string;
|
|
2527
3263
|
syntax: string[];
|
|
@@ -2529,7 +3265,7 @@ declare const embeddedDocs: {
|
|
|
2529
3265
|
examples: string[];
|
|
2530
3266
|
seealso: string[];
|
|
2531
3267
|
};
|
|
2532
|
-
|
|
3268
|
+
binomialPMF: {
|
|
2533
3269
|
name: string;
|
|
2534
3270
|
category: string;
|
|
2535
3271
|
syntax: string[];
|
|
@@ -2537,7 +3273,7 @@ declare const embeddedDocs: {
|
|
|
2537
3273
|
examples: string[];
|
|
2538
3274
|
seealso: string[];
|
|
2539
3275
|
};
|
|
2540
|
-
|
|
3276
|
+
entropy: {
|
|
2541
3277
|
name: string;
|
|
2542
3278
|
category: string;
|
|
2543
3279
|
syntax: string[];
|
|
@@ -2545,7 +3281,7 @@ declare const embeddedDocs: {
|
|
|
2545
3281
|
examples: string[];
|
|
2546
3282
|
seealso: string[];
|
|
2547
3283
|
};
|
|
2548
|
-
|
|
3284
|
+
exponentialCDF: {
|
|
2549
3285
|
name: string;
|
|
2550
3286
|
category: string;
|
|
2551
3287
|
syntax: string[];
|
|
@@ -2553,7 +3289,7 @@ declare const embeddedDocs: {
|
|
|
2553
3289
|
examples: string[];
|
|
2554
3290
|
seealso: string[];
|
|
2555
3291
|
};
|
|
2556
|
-
|
|
3292
|
+
exponentialPDF: {
|
|
2557
3293
|
name: string;
|
|
2558
3294
|
category: string;
|
|
2559
3295
|
syntax: string[];
|
|
@@ -2561,7 +3297,7 @@ declare const embeddedDocs: {
|
|
|
2561
3297
|
examples: string[];
|
|
2562
3298
|
seealso: string[];
|
|
2563
3299
|
};
|
|
2564
|
-
|
|
3300
|
+
geometricPMF: {
|
|
2565
3301
|
name: string;
|
|
2566
3302
|
category: string;
|
|
2567
3303
|
syntax: string[];
|
|
@@ -2569,7 +3305,7 @@ declare const embeddedDocs: {
|
|
|
2569
3305
|
examples: string[];
|
|
2570
3306
|
seealso: string[];
|
|
2571
3307
|
};
|
|
2572
|
-
|
|
3308
|
+
jsDivergence: {
|
|
2573
3309
|
name: string;
|
|
2574
3310
|
category: string;
|
|
2575
3311
|
syntax: string[];
|
|
@@ -2577,7 +3313,7 @@ declare const embeddedDocs: {
|
|
|
2577
3313
|
examples: string[];
|
|
2578
3314
|
seealso: string[];
|
|
2579
3315
|
};
|
|
2580
|
-
|
|
3316
|
+
normalCDF: {
|
|
2581
3317
|
name: string;
|
|
2582
3318
|
category: string;
|
|
2583
3319
|
syntax: string[];
|
|
@@ -2585,7 +3321,7 @@ declare const embeddedDocs: {
|
|
|
2585
3321
|
examples: string[];
|
|
2586
3322
|
seealso: string[];
|
|
2587
3323
|
};
|
|
2588
|
-
|
|
3324
|
+
normalPDF: {
|
|
2589
3325
|
name: string;
|
|
2590
3326
|
category: string;
|
|
2591
3327
|
syntax: string[];
|
|
@@ -2593,7 +3329,7 @@ declare const embeddedDocs: {
|
|
|
2593
3329
|
examples: string[];
|
|
2594
3330
|
seealso: string[];
|
|
2595
3331
|
};
|
|
2596
|
-
|
|
3332
|
+
poissonPMF: {
|
|
2597
3333
|
name: string;
|
|
2598
3334
|
category: string;
|
|
2599
3335
|
syntax: string[];
|
|
@@ -2601,7 +3337,7 @@ declare const embeddedDocs: {
|
|
|
2601
3337
|
examples: string[];
|
|
2602
3338
|
seealso: string[];
|
|
2603
3339
|
};
|
|
2604
|
-
|
|
3340
|
+
autoCorrelation: {
|
|
2605
3341
|
name: string;
|
|
2606
3342
|
category: string;
|
|
2607
3343
|
syntax: string[];
|
|
@@ -2609,7 +3345,7 @@ declare const embeddedDocs: {
|
|
|
2609
3345
|
examples: string[];
|
|
2610
3346
|
seealso: string[];
|
|
2611
3347
|
};
|
|
2612
|
-
|
|
3348
|
+
crossCorrelation: {
|
|
2613
3349
|
name: string;
|
|
2614
3350
|
category: string;
|
|
2615
3351
|
syntax: string[];
|
|
@@ -2617,7 +3353,7 @@ declare const embeddedDocs: {
|
|
|
2617
3353
|
examples: string[];
|
|
2618
3354
|
seealso: string[];
|
|
2619
3355
|
};
|
|
2620
|
-
|
|
3356
|
+
groupDelay: {
|
|
2621
3357
|
name: string;
|
|
2622
3358
|
category: string;
|
|
2623
3359
|
syntax: string[];
|
|
@@ -2625,7 +3361,7 @@ declare const embeddedDocs: {
|
|
|
2625
3361
|
examples: string[];
|
|
2626
3362
|
seealso: string[];
|
|
2627
3363
|
};
|
|
2628
|
-
|
|
3364
|
+
unwrapPhase: {
|
|
2629
3365
|
name: string;
|
|
2630
3366
|
category: string;
|
|
2631
3367
|
syntax: string[];
|
|
@@ -2633,7 +3369,7 @@ declare const embeddedDocs: {
|
|
|
2633
3369
|
examples: string[];
|
|
2634
3370
|
seealso: string[];
|
|
2635
3371
|
};
|
|
2636
|
-
|
|
3372
|
+
besselJ0: {
|
|
2637
3373
|
name: string;
|
|
2638
3374
|
category: string;
|
|
2639
3375
|
syntax: string[];
|
|
@@ -2641,7 +3377,7 @@ declare const embeddedDocs: {
|
|
|
2641
3377
|
examples: string[];
|
|
2642
3378
|
seealso: string[];
|
|
2643
3379
|
};
|
|
2644
|
-
|
|
3380
|
+
besselJ1: {
|
|
2645
3381
|
name: string;
|
|
2646
3382
|
category: string;
|
|
2647
3383
|
syntax: string[];
|
|
@@ -2649,7 +3385,7 @@ declare const embeddedDocs: {
|
|
|
2649
3385
|
examples: string[];
|
|
2650
3386
|
seealso: string[];
|
|
2651
3387
|
};
|
|
2652
|
-
|
|
3388
|
+
besselY0: {
|
|
2653
3389
|
name: string;
|
|
2654
3390
|
category: string;
|
|
2655
3391
|
syntax: string[];
|
|
@@ -2657,7 +3393,7 @@ declare const embeddedDocs: {
|
|
|
2657
3393
|
examples: string[];
|
|
2658
3394
|
seealso: string[];
|
|
2659
3395
|
};
|
|
2660
|
-
|
|
3396
|
+
besselY1: {
|
|
2661
3397
|
name: string;
|
|
2662
3398
|
category: string;
|
|
2663
3399
|
syntax: string[];
|
|
@@ -2665,7 +3401,7 @@ declare const embeddedDocs: {
|
|
|
2665
3401
|
examples: string[];
|
|
2666
3402
|
seealso: string[];
|
|
2667
3403
|
};
|
|
2668
|
-
|
|
3404
|
+
beta: {
|
|
2669
3405
|
name: string;
|
|
2670
3406
|
category: string;
|
|
2671
3407
|
syntax: string[];
|
|
@@ -2673,7 +3409,7 @@ declare const embeddedDocs: {
|
|
|
2673
3409
|
examples: string[];
|
|
2674
3410
|
seealso: string[];
|
|
2675
3411
|
};
|
|
2676
|
-
|
|
3412
|
+
digamma: {
|
|
2677
3413
|
name: string;
|
|
2678
3414
|
category: string;
|
|
2679
3415
|
syntax: string[];
|
|
@@ -2681,7 +3417,7 @@ declare const embeddedDocs: {
|
|
|
2681
3417
|
examples: string[];
|
|
2682
3418
|
seealso: string[];
|
|
2683
3419
|
};
|
|
2684
|
-
|
|
3420
|
+
erfc: {
|
|
2685
3421
|
name: string;
|
|
2686
3422
|
category: string;
|
|
2687
3423
|
syntax: string[];
|
|
@@ -2689,7 +3425,7 @@ declare const embeddedDocs: {
|
|
|
2689
3425
|
examples: string[];
|
|
2690
3426
|
seealso: string[];
|
|
2691
3427
|
};
|
|
2692
|
-
|
|
3428
|
+
gammainc: {
|
|
2693
3429
|
name: string;
|
|
2694
3430
|
category: string;
|
|
2695
3431
|
syntax: string[];
|
|
@@ -2724,7 +3460,7 @@ interface Scope {
|
|
|
2724
3460
|
/**
|
|
2725
3461
|
* A compiled expression that can be evaluated with an optional user scope.
|
|
2726
3462
|
*/
|
|
2727
|
-
interface CompiledExpression {
|
|
3463
|
+
interface CompiledExpression$8 {
|
|
2728
3464
|
evaluate(scope?: Record<string, unknown> | Scope): unknown;
|
|
2729
3465
|
}
|
|
2730
3466
|
/**
|
|
@@ -2741,7 +3477,7 @@ interface CompiledExpression {
|
|
|
2741
3477
|
* compiled.evaluate(); // 5
|
|
2742
3478
|
* ```
|
|
2743
3479
|
*/
|
|
2744
|
-
declare function compile(node: MathNode, mathScope: Record<string, unknown>): CompiledExpression;
|
|
3480
|
+
declare function compile(node: MathNode, mathScope: Record<string, unknown>): CompiledExpression$8;
|
|
2745
3481
|
|
|
2746
3482
|
/**
|
|
2747
3483
|
* Expression evaluator for MathTS.
|
|
@@ -2799,7 +3535,7 @@ declare function createEvaluate(parseFn: (expr: string) => MathNode, mathScope:
|
|
|
2799
3535
|
* compiled.evaluate({ x: 3, y: 2 }); // 11
|
|
2800
3536
|
* ```
|
|
2801
3537
|
*/
|
|
2802
|
-
declare function compileExpression(parseFn: (expr: string) => MathNode, mathScope: Record<string, unknown>, expr: string, options?: EvaluateOptions): CompiledExpression;
|
|
3538
|
+
declare function compileExpression(parseFn: (expr: string) => MathNode, mathScope: Record<string, unknown>, expr: string, options?: EvaluateOptions): CompiledExpression$8;
|
|
2803
3539
|
|
|
2804
3540
|
/**
|
|
2805
3541
|
* MathML rendering helpers — the MathML analog of `utils/latex.ts`. Shared by
|
|
@@ -2895,12 +3631,12 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
2895
3631
|
};
|
|
2896
3632
|
get isNode(): boolean;
|
|
2897
3633
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
2898
|
-
compile(): CompiledExpression$
|
|
3634
|
+
compile(): CompiledExpression$9;
|
|
2899
3635
|
_ifNode(node: unknown): {
|
|
2900
3636
|
get type(): string;
|
|
2901
3637
|
get isNode(): boolean;
|
|
2902
3638
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
2903
|
-
compile(): CompiledExpression$
|
|
3639
|
+
compile(): CompiledExpression$9;
|
|
2904
3640
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
2905
3641
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
2906
3642
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -2928,7 +3664,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
2928
3664
|
get type(): string;
|
|
2929
3665
|
get isNode(): boolean;
|
|
2930
3666
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
2931
|
-
compile(): CompiledExpression$
|
|
3667
|
+
compile(): CompiledExpression$9;
|
|
2932
3668
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
2933
3669
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
2934
3670
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -2955,7 +3691,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
2955
3691
|
get type(): string;
|
|
2956
3692
|
get isNode(): boolean;
|
|
2957
3693
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
2958
|
-
compile(): CompiledExpression$
|
|
3694
|
+
compile(): CompiledExpression$9;
|
|
2959
3695
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
2960
3696
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
2961
3697
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -2983,7 +3719,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
2983
3719
|
get type(): string;
|
|
2984
3720
|
get isNode(): boolean;
|
|
2985
3721
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
2986
|
-
compile(): CompiledExpression$
|
|
3722
|
+
compile(): CompiledExpression$9;
|
|
2987
3723
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
2988
3724
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
2989
3725
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3010,7 +3746,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3010
3746
|
get type(): string;
|
|
3011
3747
|
get isNode(): boolean;
|
|
3012
3748
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3013
|
-
compile(): CompiledExpression$
|
|
3749
|
+
compile(): CompiledExpression$9;
|
|
3014
3750
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3015
3751
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3016
3752
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3037,7 +3773,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3037
3773
|
get type(): string;
|
|
3038
3774
|
get isNode(): boolean;
|
|
3039
3775
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3040
|
-
compile(): CompiledExpression$
|
|
3776
|
+
compile(): CompiledExpression$9;
|
|
3041
3777
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3042
3778
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3043
3779
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3064,7 +3800,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3064
3800
|
get type(): string;
|
|
3065
3801
|
get isNode(): boolean;
|
|
3066
3802
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3067
|
-
compile(): CompiledExpression$
|
|
3803
|
+
compile(): CompiledExpression$9;
|
|
3068
3804
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3069
3805
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3070
3806
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3092,7 +3828,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3092
3828
|
get type(): string;
|
|
3093
3829
|
get isNode(): boolean;
|
|
3094
3830
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3095
|
-
compile(): CompiledExpression$
|
|
3831
|
+
compile(): CompiledExpression$9;
|
|
3096
3832
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3097
3833
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3098
3834
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3119,7 +3855,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3119
3855
|
get type(): string;
|
|
3120
3856
|
get isNode(): boolean;
|
|
3121
3857
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3122
|
-
compile(): CompiledExpression$
|
|
3858
|
+
compile(): CompiledExpression$9;
|
|
3123
3859
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3124
3860
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3125
3861
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3146,7 +3882,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3146
3882
|
get type(): string;
|
|
3147
3883
|
get isNode(): boolean;
|
|
3148
3884
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3149
|
-
compile(): CompiledExpression$
|
|
3885
|
+
compile(): CompiledExpression$9;
|
|
3150
3886
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3151
3887
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3152
3888
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3174,7 +3910,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3174
3910
|
get type(): string;
|
|
3175
3911
|
get isNode(): boolean;
|
|
3176
3912
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3177
|
-
compile(): CompiledExpression$
|
|
3913
|
+
compile(): CompiledExpression$9;
|
|
3178
3914
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3179
3915
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3180
3916
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3202,7 +3938,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3202
3938
|
get type(): string;
|
|
3203
3939
|
get isNode(): boolean;
|
|
3204
3940
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3205
|
-
compile(): CompiledExpression$
|
|
3941
|
+
compile(): CompiledExpression$9;
|
|
3206
3942
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3207
3943
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3208
3944
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3237,7 +3973,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3237
3973
|
get type(): string;
|
|
3238
3974
|
get isNode(): boolean;
|
|
3239
3975
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3240
|
-
compile(): CompiledExpression$
|
|
3976
|
+
compile(): CompiledExpression$9;
|
|
3241
3977
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3242
3978
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3243
3979
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3343,12 +4079,12 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3343
4079
|
};
|
|
3344
4080
|
get isNode(): boolean;
|
|
3345
4081
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3346
|
-
compile(): CompiledExpression$
|
|
4082
|
+
compile(): CompiledExpression$9;
|
|
3347
4083
|
_ifNode(node: unknown): {
|
|
3348
4084
|
get type(): string;
|
|
3349
4085
|
get isNode(): boolean;
|
|
3350
4086
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3351
|
-
compile(): CompiledExpression$
|
|
4087
|
+
compile(): CompiledExpression$9;
|
|
3352
4088
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3353
4089
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3354
4090
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3376,7 +4112,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3376
4112
|
get type(): string;
|
|
3377
4113
|
get isNode(): boolean;
|
|
3378
4114
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3379
|
-
compile(): CompiledExpression$
|
|
4115
|
+
compile(): CompiledExpression$9;
|
|
3380
4116
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3381
4117
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3382
4118
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3403,7 +4139,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3403
4139
|
get type(): string;
|
|
3404
4140
|
get isNode(): boolean;
|
|
3405
4141
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3406
|
-
compile(): CompiledExpression$
|
|
4142
|
+
compile(): CompiledExpression$9;
|
|
3407
4143
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3408
4144
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3409
4145
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3431,7 +4167,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3431
4167
|
get type(): string;
|
|
3432
4168
|
get isNode(): boolean;
|
|
3433
4169
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3434
|
-
compile(): CompiledExpression$
|
|
4170
|
+
compile(): CompiledExpression$9;
|
|
3435
4171
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3436
4172
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3437
4173
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3458,7 +4194,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3458
4194
|
get type(): string;
|
|
3459
4195
|
get isNode(): boolean;
|
|
3460
4196
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3461
|
-
compile(): CompiledExpression$
|
|
4197
|
+
compile(): CompiledExpression$9;
|
|
3462
4198
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3463
4199
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3464
4200
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3485,7 +4221,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3485
4221
|
get type(): string;
|
|
3486
4222
|
get isNode(): boolean;
|
|
3487
4223
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3488
|
-
compile(): CompiledExpression$
|
|
4224
|
+
compile(): CompiledExpression$9;
|
|
3489
4225
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3490
4226
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3491
4227
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3512,7 +4248,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3512
4248
|
get type(): string;
|
|
3513
4249
|
get isNode(): boolean;
|
|
3514
4250
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3515
|
-
compile(): CompiledExpression$
|
|
4251
|
+
compile(): CompiledExpression$9;
|
|
3516
4252
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3517
4253
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3518
4254
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3540,7 +4276,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3540
4276
|
get type(): string;
|
|
3541
4277
|
get isNode(): boolean;
|
|
3542
4278
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3543
|
-
compile(): CompiledExpression$
|
|
4279
|
+
compile(): CompiledExpression$9;
|
|
3544
4280
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3545
4281
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3546
4282
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3567,7 +4303,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3567
4303
|
get type(): string;
|
|
3568
4304
|
get isNode(): boolean;
|
|
3569
4305
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3570
|
-
compile(): CompiledExpression$
|
|
4306
|
+
compile(): CompiledExpression$9;
|
|
3571
4307
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3572
4308
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3573
4309
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3594,7 +4330,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3594
4330
|
get type(): string;
|
|
3595
4331
|
get isNode(): boolean;
|
|
3596
4332
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3597
|
-
compile(): CompiledExpression$
|
|
4333
|
+
compile(): CompiledExpression$9;
|
|
3598
4334
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3599
4335
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3600
4336
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3622,7 +4358,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3622
4358
|
get type(): string;
|
|
3623
4359
|
get isNode(): boolean;
|
|
3624
4360
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3625
|
-
compile(): CompiledExpression$
|
|
4361
|
+
compile(): CompiledExpression$9;
|
|
3626
4362
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3627
4363
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3628
4364
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3650,7 +4386,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3650
4386
|
get type(): string;
|
|
3651
4387
|
get isNode(): boolean;
|
|
3652
4388
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3653
|
-
compile(): CompiledExpression$
|
|
4389
|
+
compile(): CompiledExpression$9;
|
|
3654
4390
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3655
4391
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3656
4392
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3685,7 +4421,7 @@ declare const createAccessorNode: FactoryFunction<{
|
|
|
3685
4421
|
get type(): string;
|
|
3686
4422
|
get isNode(): boolean;
|
|
3687
4423
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3688
|
-
compile(): CompiledExpression$
|
|
4424
|
+
compile(): CompiledExpression$9;
|
|
3689
4425
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3690
4426
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3691
4427
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3780,12 +4516,12 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3780
4516
|
_toTex(options?: StringOptions$7): string;
|
|
3781
4517
|
get isNode(): boolean;
|
|
3782
4518
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3783
|
-
compile(): CompiledExpression$
|
|
4519
|
+
compile(): CompiledExpression$9;
|
|
3784
4520
|
_ifNode(node: unknown): {
|
|
3785
4521
|
get type(): string;
|
|
3786
4522
|
get isNode(): boolean;
|
|
3787
4523
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3788
|
-
compile(): CompiledExpression$
|
|
4524
|
+
compile(): CompiledExpression$9;
|
|
3789
4525
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3790
4526
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3791
4527
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3813,7 +4549,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3813
4549
|
get type(): string;
|
|
3814
4550
|
get isNode(): boolean;
|
|
3815
4551
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3816
|
-
compile(): CompiledExpression$
|
|
4552
|
+
compile(): CompiledExpression$9;
|
|
3817
4553
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3818
4554
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3819
4555
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3840,7 +4576,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3840
4576
|
get type(): string;
|
|
3841
4577
|
get isNode(): boolean;
|
|
3842
4578
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3843
|
-
compile(): CompiledExpression$
|
|
4579
|
+
compile(): CompiledExpression$9;
|
|
3844
4580
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3845
4581
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3846
4582
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3868,7 +4604,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3868
4604
|
get type(): string;
|
|
3869
4605
|
get isNode(): boolean;
|
|
3870
4606
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3871
|
-
compile(): CompiledExpression$
|
|
4607
|
+
compile(): CompiledExpression$9;
|
|
3872
4608
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3873
4609
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3874
4610
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3895,7 +4631,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3895
4631
|
get type(): string;
|
|
3896
4632
|
get isNode(): boolean;
|
|
3897
4633
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3898
|
-
compile(): CompiledExpression$
|
|
4634
|
+
compile(): CompiledExpression$9;
|
|
3899
4635
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3900
4636
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3901
4637
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3922,7 +4658,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3922
4658
|
get type(): string;
|
|
3923
4659
|
get isNode(): boolean;
|
|
3924
4660
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3925
|
-
compile(): CompiledExpression$
|
|
4661
|
+
compile(): CompiledExpression$9;
|
|
3926
4662
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3927
4663
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3928
4664
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3949,7 +4685,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3949
4685
|
get type(): string;
|
|
3950
4686
|
get isNode(): boolean;
|
|
3951
4687
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3952
|
-
compile(): CompiledExpression$
|
|
4688
|
+
compile(): CompiledExpression$9;
|
|
3953
4689
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3954
4690
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3955
4691
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -3977,7 +4713,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
3977
4713
|
get type(): string;
|
|
3978
4714
|
get isNode(): boolean;
|
|
3979
4715
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
3980
|
-
compile(): CompiledExpression$
|
|
4716
|
+
compile(): CompiledExpression$9;
|
|
3981
4717
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
3982
4718
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
3983
4719
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4004,7 +4740,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4004
4740
|
get type(): string;
|
|
4005
4741
|
get isNode(): boolean;
|
|
4006
4742
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4007
|
-
compile(): CompiledExpression$
|
|
4743
|
+
compile(): CompiledExpression$9;
|
|
4008
4744
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4009
4745
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4010
4746
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4031,7 +4767,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4031
4767
|
get type(): string;
|
|
4032
4768
|
get isNode(): boolean;
|
|
4033
4769
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4034
|
-
compile(): CompiledExpression$
|
|
4770
|
+
compile(): CompiledExpression$9;
|
|
4035
4771
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4036
4772
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4037
4773
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4059,7 +4795,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4059
4795
|
get type(): string;
|
|
4060
4796
|
get isNode(): boolean;
|
|
4061
4797
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4062
|
-
compile(): CompiledExpression$
|
|
4798
|
+
compile(): CompiledExpression$9;
|
|
4063
4799
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4064
4800
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4065
4801
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4087,7 +4823,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4087
4823
|
get type(): string;
|
|
4088
4824
|
get isNode(): boolean;
|
|
4089
4825
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4090
|
-
compile(): CompiledExpression$
|
|
4826
|
+
compile(): CompiledExpression$9;
|
|
4091
4827
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4092
4828
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4093
4829
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4122,7 +4858,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4122
4858
|
get type(): string;
|
|
4123
4859
|
get isNode(): boolean;
|
|
4124
4860
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4125
|
-
compile(): CompiledExpression$
|
|
4861
|
+
compile(): CompiledExpression$9;
|
|
4126
4862
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4127
4863
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4128
4864
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4222,12 +4958,12 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4222
4958
|
_toTex(options?: StringOptions$7): string;
|
|
4223
4959
|
get isNode(): boolean;
|
|
4224
4960
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4225
|
-
compile(): CompiledExpression$
|
|
4961
|
+
compile(): CompiledExpression$9;
|
|
4226
4962
|
_ifNode(node: unknown): {
|
|
4227
4963
|
get type(): string;
|
|
4228
4964
|
get isNode(): boolean;
|
|
4229
4965
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4230
|
-
compile(): CompiledExpression$
|
|
4966
|
+
compile(): CompiledExpression$9;
|
|
4231
4967
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4232
4968
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4233
4969
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4255,7 +4991,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4255
4991
|
get type(): string;
|
|
4256
4992
|
get isNode(): boolean;
|
|
4257
4993
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4258
|
-
compile(): CompiledExpression$
|
|
4994
|
+
compile(): CompiledExpression$9;
|
|
4259
4995
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4260
4996
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4261
4997
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4282,7 +5018,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4282
5018
|
get type(): string;
|
|
4283
5019
|
get isNode(): boolean;
|
|
4284
5020
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4285
|
-
compile(): CompiledExpression$
|
|
5021
|
+
compile(): CompiledExpression$9;
|
|
4286
5022
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4287
5023
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4288
5024
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4310,7 +5046,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4310
5046
|
get type(): string;
|
|
4311
5047
|
get isNode(): boolean;
|
|
4312
5048
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4313
|
-
compile(): CompiledExpression$
|
|
5049
|
+
compile(): CompiledExpression$9;
|
|
4314
5050
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4315
5051
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4316
5052
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4337,7 +5073,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4337
5073
|
get type(): string;
|
|
4338
5074
|
get isNode(): boolean;
|
|
4339
5075
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4340
|
-
compile(): CompiledExpression$
|
|
5076
|
+
compile(): CompiledExpression$9;
|
|
4341
5077
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4342
5078
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4343
5079
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4364,7 +5100,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4364
5100
|
get type(): string;
|
|
4365
5101
|
get isNode(): boolean;
|
|
4366
5102
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4367
|
-
compile(): CompiledExpression$
|
|
5103
|
+
compile(): CompiledExpression$9;
|
|
4368
5104
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4369
5105
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4370
5106
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4391,7 +5127,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4391
5127
|
get type(): string;
|
|
4392
5128
|
get isNode(): boolean;
|
|
4393
5129
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4394
|
-
compile(): CompiledExpression$
|
|
5130
|
+
compile(): CompiledExpression$9;
|
|
4395
5131
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4396
5132
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4397
5133
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4419,7 +5155,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4419
5155
|
get type(): string;
|
|
4420
5156
|
get isNode(): boolean;
|
|
4421
5157
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4422
|
-
compile(): CompiledExpression$
|
|
5158
|
+
compile(): CompiledExpression$9;
|
|
4423
5159
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4424
5160
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4425
5161
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4446,7 +5182,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4446
5182
|
get type(): string;
|
|
4447
5183
|
get isNode(): boolean;
|
|
4448
5184
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4449
|
-
compile(): CompiledExpression$
|
|
5185
|
+
compile(): CompiledExpression$9;
|
|
4450
5186
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4451
5187
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4452
5188
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4473,7 +5209,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4473
5209
|
get type(): string;
|
|
4474
5210
|
get isNode(): boolean;
|
|
4475
5211
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4476
|
-
compile(): CompiledExpression$
|
|
5212
|
+
compile(): CompiledExpression$9;
|
|
4477
5213
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4478
5214
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4479
5215
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4501,7 +5237,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4501
5237
|
get type(): string;
|
|
4502
5238
|
get isNode(): boolean;
|
|
4503
5239
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4504
|
-
compile(): CompiledExpression$
|
|
5240
|
+
compile(): CompiledExpression$9;
|
|
4505
5241
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4506
5242
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4507
5243
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4529,7 +5265,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4529
5265
|
get type(): string;
|
|
4530
5266
|
get isNode(): boolean;
|
|
4531
5267
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4532
|
-
compile(): CompiledExpression$
|
|
5268
|
+
compile(): CompiledExpression$9;
|
|
4533
5269
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4534
5270
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4535
5271
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4564,7 +5300,7 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
4564
5300
|
get type(): string;
|
|
4565
5301
|
get isNode(): boolean;
|
|
4566
5302
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4567
|
-
compile(): CompiledExpression$
|
|
5303
|
+
compile(): CompiledExpression$9;
|
|
4568
5304
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4569
5305
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4570
5306
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4668,12 +5404,12 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4668
5404
|
_toTex(options?: StringOptions$7): string;
|
|
4669
5405
|
get isNode(): boolean;
|
|
4670
5406
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4671
|
-
compile(): CompiledExpression$
|
|
5407
|
+
compile(): CompiledExpression$9;
|
|
4672
5408
|
_ifNode(node: unknown): {
|
|
4673
5409
|
get type(): string;
|
|
4674
5410
|
get isNode(): boolean;
|
|
4675
5411
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4676
|
-
compile(): CompiledExpression$
|
|
5412
|
+
compile(): CompiledExpression$9;
|
|
4677
5413
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4678
5414
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4679
5415
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4701,7 +5437,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4701
5437
|
get type(): string;
|
|
4702
5438
|
get isNode(): boolean;
|
|
4703
5439
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4704
|
-
compile(): CompiledExpression$
|
|
5440
|
+
compile(): CompiledExpression$9;
|
|
4705
5441
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4706
5442
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4707
5443
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4728,7 +5464,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4728
5464
|
get type(): string;
|
|
4729
5465
|
get isNode(): boolean;
|
|
4730
5466
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4731
|
-
compile(): CompiledExpression$
|
|
5467
|
+
compile(): CompiledExpression$9;
|
|
4732
5468
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4733
5469
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4734
5470
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4756,7 +5492,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4756
5492
|
get type(): string;
|
|
4757
5493
|
get isNode(): boolean;
|
|
4758
5494
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4759
|
-
compile(): CompiledExpression$
|
|
5495
|
+
compile(): CompiledExpression$9;
|
|
4760
5496
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4761
5497
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4762
5498
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4783,7 +5519,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4783
5519
|
get type(): string;
|
|
4784
5520
|
get isNode(): boolean;
|
|
4785
5521
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4786
|
-
compile(): CompiledExpression$
|
|
5522
|
+
compile(): CompiledExpression$9;
|
|
4787
5523
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4788
5524
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4789
5525
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4810,7 +5546,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4810
5546
|
get type(): string;
|
|
4811
5547
|
get isNode(): boolean;
|
|
4812
5548
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4813
|
-
compile(): CompiledExpression$
|
|
5549
|
+
compile(): CompiledExpression$9;
|
|
4814
5550
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4815
5551
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4816
5552
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4837,7 +5573,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4837
5573
|
get type(): string;
|
|
4838
5574
|
get isNode(): boolean;
|
|
4839
5575
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4840
|
-
compile(): CompiledExpression$
|
|
5576
|
+
compile(): CompiledExpression$9;
|
|
4841
5577
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4842
5578
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4843
5579
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4865,7 +5601,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4865
5601
|
get type(): string;
|
|
4866
5602
|
get isNode(): boolean;
|
|
4867
5603
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4868
|
-
compile(): CompiledExpression$
|
|
5604
|
+
compile(): CompiledExpression$9;
|
|
4869
5605
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4870
5606
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4871
5607
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4892,7 +5628,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4892
5628
|
get type(): string;
|
|
4893
5629
|
get isNode(): boolean;
|
|
4894
5630
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4895
|
-
compile(): CompiledExpression$
|
|
5631
|
+
compile(): CompiledExpression$9;
|
|
4896
5632
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4897
5633
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4898
5634
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4919,7 +5655,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4919
5655
|
get type(): string;
|
|
4920
5656
|
get isNode(): boolean;
|
|
4921
5657
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4922
|
-
compile(): CompiledExpression$
|
|
5658
|
+
compile(): CompiledExpression$9;
|
|
4923
5659
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4924
5660
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4925
5661
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4947,7 +5683,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4947
5683
|
get type(): string;
|
|
4948
5684
|
get isNode(): boolean;
|
|
4949
5685
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4950
|
-
compile(): CompiledExpression$
|
|
5686
|
+
compile(): CompiledExpression$9;
|
|
4951
5687
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4952
5688
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4953
5689
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -4975,7 +5711,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
4975
5711
|
get type(): string;
|
|
4976
5712
|
get isNode(): boolean;
|
|
4977
5713
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
4978
|
-
compile(): CompiledExpression$
|
|
5714
|
+
compile(): CompiledExpression$9;
|
|
4979
5715
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
4980
5716
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
4981
5717
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5009,7 +5745,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5009
5745
|
get type(): string;
|
|
5010
5746
|
get isNode(): boolean;
|
|
5011
5747
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5012
|
-
compile(): CompiledExpression$
|
|
5748
|
+
compile(): CompiledExpression$9;
|
|
5013
5749
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5014
5750
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5015
5751
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5116,12 +5852,12 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5116
5852
|
_toTex(options?: StringOptions$7): string;
|
|
5117
5853
|
get isNode(): boolean;
|
|
5118
5854
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5119
|
-
compile(): CompiledExpression$
|
|
5855
|
+
compile(): CompiledExpression$9;
|
|
5120
5856
|
_ifNode(node: unknown): {
|
|
5121
5857
|
get type(): string;
|
|
5122
5858
|
get isNode(): boolean;
|
|
5123
5859
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5124
|
-
compile(): CompiledExpression$
|
|
5860
|
+
compile(): CompiledExpression$9;
|
|
5125
5861
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5126
5862
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5127
5863
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5149,7 +5885,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5149
5885
|
get type(): string;
|
|
5150
5886
|
get isNode(): boolean;
|
|
5151
5887
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5152
|
-
compile(): CompiledExpression$
|
|
5888
|
+
compile(): CompiledExpression$9;
|
|
5153
5889
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5154
5890
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5155
5891
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5176,7 +5912,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5176
5912
|
get type(): string;
|
|
5177
5913
|
get isNode(): boolean;
|
|
5178
5914
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5179
|
-
compile(): CompiledExpression$
|
|
5915
|
+
compile(): CompiledExpression$9;
|
|
5180
5916
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5181
5917
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5182
5918
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5204,7 +5940,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5204
5940
|
get type(): string;
|
|
5205
5941
|
get isNode(): boolean;
|
|
5206
5942
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5207
|
-
compile(): CompiledExpression$
|
|
5943
|
+
compile(): CompiledExpression$9;
|
|
5208
5944
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5209
5945
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5210
5946
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5231,7 +5967,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5231
5967
|
get type(): string;
|
|
5232
5968
|
get isNode(): boolean;
|
|
5233
5969
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5234
|
-
compile(): CompiledExpression$
|
|
5970
|
+
compile(): CompiledExpression$9;
|
|
5235
5971
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5236
5972
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5237
5973
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5258,7 +5994,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5258
5994
|
get type(): string;
|
|
5259
5995
|
get isNode(): boolean;
|
|
5260
5996
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5261
|
-
compile(): CompiledExpression$
|
|
5997
|
+
compile(): CompiledExpression$9;
|
|
5262
5998
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5263
5999
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5264
6000
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5285,7 +6021,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5285
6021
|
get type(): string;
|
|
5286
6022
|
get isNode(): boolean;
|
|
5287
6023
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5288
|
-
compile(): CompiledExpression$
|
|
6024
|
+
compile(): CompiledExpression$9;
|
|
5289
6025
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5290
6026
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5291
6027
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5313,7 +6049,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5313
6049
|
get type(): string;
|
|
5314
6050
|
get isNode(): boolean;
|
|
5315
6051
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5316
|
-
compile(): CompiledExpression$
|
|
6052
|
+
compile(): CompiledExpression$9;
|
|
5317
6053
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5318
6054
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5319
6055
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5340,7 +6076,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5340
6076
|
get type(): string;
|
|
5341
6077
|
get isNode(): boolean;
|
|
5342
6078
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5343
|
-
compile(): CompiledExpression$
|
|
6079
|
+
compile(): CompiledExpression$9;
|
|
5344
6080
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5345
6081
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5346
6082
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5367,7 +6103,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5367
6103
|
get type(): string;
|
|
5368
6104
|
get isNode(): boolean;
|
|
5369
6105
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5370
|
-
compile(): CompiledExpression$
|
|
6106
|
+
compile(): CompiledExpression$9;
|
|
5371
6107
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5372
6108
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5373
6109
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5395,7 +6131,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5395
6131
|
get type(): string;
|
|
5396
6132
|
get isNode(): boolean;
|
|
5397
6133
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5398
|
-
compile(): CompiledExpression$
|
|
6134
|
+
compile(): CompiledExpression$9;
|
|
5399
6135
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5400
6136
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5401
6137
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5423,7 +6159,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5423
6159
|
get type(): string;
|
|
5424
6160
|
get isNode(): boolean;
|
|
5425
6161
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5426
|
-
compile(): CompiledExpression$
|
|
6162
|
+
compile(): CompiledExpression$9;
|
|
5427
6163
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5428
6164
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5429
6165
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5457,7 +6193,7 @@ declare const createAssignmentNode: FactoryFunction<{
|
|
|
5457
6193
|
get type(): string;
|
|
5458
6194
|
get isNode(): boolean;
|
|
5459
6195
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5460
|
-
compile(): CompiledExpression$
|
|
6196
|
+
compile(): CompiledExpression$9;
|
|
5461
6197
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5462
6198
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5463
6199
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5560,12 +6296,12 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5560
6296
|
_toTex(options?: StringOptions$7): string;
|
|
5561
6297
|
get isNode(): boolean;
|
|
5562
6298
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5563
|
-
compile(): CompiledExpression$
|
|
6299
|
+
compile(): CompiledExpression$9;
|
|
5564
6300
|
_ifNode(node: unknown): {
|
|
5565
6301
|
get type(): string;
|
|
5566
6302
|
get isNode(): boolean;
|
|
5567
6303
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5568
|
-
compile(): CompiledExpression$
|
|
6304
|
+
compile(): CompiledExpression$9;
|
|
5569
6305
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5570
6306
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5571
6307
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5593,7 +6329,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5593
6329
|
get type(): string;
|
|
5594
6330
|
get isNode(): boolean;
|
|
5595
6331
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5596
|
-
compile(): CompiledExpression$
|
|
6332
|
+
compile(): CompiledExpression$9;
|
|
5597
6333
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5598
6334
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5599
6335
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5620,7 +6356,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5620
6356
|
get type(): string;
|
|
5621
6357
|
get isNode(): boolean;
|
|
5622
6358
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5623
|
-
compile(): CompiledExpression$
|
|
6359
|
+
compile(): CompiledExpression$9;
|
|
5624
6360
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5625
6361
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5626
6362
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5648,7 +6384,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5648
6384
|
get type(): string;
|
|
5649
6385
|
get isNode(): boolean;
|
|
5650
6386
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5651
|
-
compile(): CompiledExpression$
|
|
6387
|
+
compile(): CompiledExpression$9;
|
|
5652
6388
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5653
6389
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5654
6390
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5675,7 +6411,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5675
6411
|
get type(): string;
|
|
5676
6412
|
get isNode(): boolean;
|
|
5677
6413
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5678
|
-
compile(): CompiledExpression$
|
|
6414
|
+
compile(): CompiledExpression$9;
|
|
5679
6415
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5680
6416
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5681
6417
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5702,7 +6438,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5702
6438
|
get type(): string;
|
|
5703
6439
|
get isNode(): boolean;
|
|
5704
6440
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5705
|
-
compile(): CompiledExpression$
|
|
6441
|
+
compile(): CompiledExpression$9;
|
|
5706
6442
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5707
6443
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5708
6444
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5729,7 +6465,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5729
6465
|
get type(): string;
|
|
5730
6466
|
get isNode(): boolean;
|
|
5731
6467
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5732
|
-
compile(): CompiledExpression$
|
|
6468
|
+
compile(): CompiledExpression$9;
|
|
5733
6469
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5734
6470
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5735
6471
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5757,7 +6493,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5757
6493
|
get type(): string;
|
|
5758
6494
|
get isNode(): boolean;
|
|
5759
6495
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5760
|
-
compile(): CompiledExpression$
|
|
6496
|
+
compile(): CompiledExpression$9;
|
|
5761
6497
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5762
6498
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5763
6499
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5784,7 +6520,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5784
6520
|
get type(): string;
|
|
5785
6521
|
get isNode(): boolean;
|
|
5786
6522
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5787
|
-
compile(): CompiledExpression$
|
|
6523
|
+
compile(): CompiledExpression$9;
|
|
5788
6524
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5789
6525
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5790
6526
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5811,7 +6547,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5811
6547
|
get type(): string;
|
|
5812
6548
|
get isNode(): boolean;
|
|
5813
6549
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5814
|
-
compile(): CompiledExpression$
|
|
6550
|
+
compile(): CompiledExpression$9;
|
|
5815
6551
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5816
6552
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5817
6553
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5839,7 +6575,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5839
6575
|
get type(): string;
|
|
5840
6576
|
get isNode(): boolean;
|
|
5841
6577
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5842
|
-
compile(): CompiledExpression$
|
|
6578
|
+
compile(): CompiledExpression$9;
|
|
5843
6579
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5844
6580
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5845
6581
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5867,7 +6603,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5867
6603
|
get type(): string;
|
|
5868
6604
|
get isNode(): boolean;
|
|
5869
6605
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5870
|
-
compile(): CompiledExpression$
|
|
6606
|
+
compile(): CompiledExpression$9;
|
|
5871
6607
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5872
6608
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5873
6609
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -5902,7 +6638,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
5902
6638
|
get type(): string;
|
|
5903
6639
|
get isNode(): boolean;
|
|
5904
6640
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
5905
|
-
compile(): CompiledExpression$
|
|
6641
|
+
compile(): CompiledExpression$9;
|
|
5906
6642
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
5907
6643
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
5908
6644
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6006,12 +6742,12 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6006
6742
|
_toTex(options?: StringOptions$7): string;
|
|
6007
6743
|
get isNode(): boolean;
|
|
6008
6744
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6009
|
-
compile(): CompiledExpression$
|
|
6745
|
+
compile(): CompiledExpression$9;
|
|
6010
6746
|
_ifNode(node: unknown): {
|
|
6011
6747
|
get type(): string;
|
|
6012
6748
|
get isNode(): boolean;
|
|
6013
6749
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6014
|
-
compile(): CompiledExpression$
|
|
6750
|
+
compile(): CompiledExpression$9;
|
|
6015
6751
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6016
6752
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6017
6753
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6039,7 +6775,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6039
6775
|
get type(): string;
|
|
6040
6776
|
get isNode(): boolean;
|
|
6041
6777
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6042
|
-
compile(): CompiledExpression$
|
|
6778
|
+
compile(): CompiledExpression$9;
|
|
6043
6779
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6044
6780
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6045
6781
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6066,7 +6802,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6066
6802
|
get type(): string;
|
|
6067
6803
|
get isNode(): boolean;
|
|
6068
6804
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6069
|
-
compile(): CompiledExpression$
|
|
6805
|
+
compile(): CompiledExpression$9;
|
|
6070
6806
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6071
6807
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6072
6808
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6094,7 +6830,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6094
6830
|
get type(): string;
|
|
6095
6831
|
get isNode(): boolean;
|
|
6096
6832
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6097
|
-
compile(): CompiledExpression$
|
|
6833
|
+
compile(): CompiledExpression$9;
|
|
6098
6834
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6099
6835
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6100
6836
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6121,7 +6857,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6121
6857
|
get type(): string;
|
|
6122
6858
|
get isNode(): boolean;
|
|
6123
6859
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6124
|
-
compile(): CompiledExpression$
|
|
6860
|
+
compile(): CompiledExpression$9;
|
|
6125
6861
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6126
6862
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6127
6863
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6148,7 +6884,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6148
6884
|
get type(): string;
|
|
6149
6885
|
get isNode(): boolean;
|
|
6150
6886
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6151
|
-
compile(): CompiledExpression$
|
|
6887
|
+
compile(): CompiledExpression$9;
|
|
6152
6888
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6153
6889
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6154
6890
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6175,7 +6911,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6175
6911
|
get type(): string;
|
|
6176
6912
|
get isNode(): boolean;
|
|
6177
6913
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6178
|
-
compile(): CompiledExpression$
|
|
6914
|
+
compile(): CompiledExpression$9;
|
|
6179
6915
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6180
6916
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6181
6917
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6203,7 +6939,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6203
6939
|
get type(): string;
|
|
6204
6940
|
get isNode(): boolean;
|
|
6205
6941
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6206
|
-
compile(): CompiledExpression$
|
|
6942
|
+
compile(): CompiledExpression$9;
|
|
6207
6943
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6208
6944
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6209
6945
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6230,7 +6966,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6230
6966
|
get type(): string;
|
|
6231
6967
|
get isNode(): boolean;
|
|
6232
6968
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6233
|
-
compile(): CompiledExpression$
|
|
6969
|
+
compile(): CompiledExpression$9;
|
|
6234
6970
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6235
6971
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6236
6972
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6257,7 +6993,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6257
6993
|
get type(): string;
|
|
6258
6994
|
get isNode(): boolean;
|
|
6259
6995
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6260
|
-
compile(): CompiledExpression$
|
|
6996
|
+
compile(): CompiledExpression$9;
|
|
6261
6997
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6262
6998
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6263
6999
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6285,7 +7021,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6285
7021
|
get type(): string;
|
|
6286
7022
|
get isNode(): boolean;
|
|
6287
7023
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6288
|
-
compile(): CompiledExpression$
|
|
7024
|
+
compile(): CompiledExpression$9;
|
|
6289
7025
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6290
7026
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6291
7027
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6313,7 +7049,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6313
7049
|
get type(): string;
|
|
6314
7050
|
get isNode(): boolean;
|
|
6315
7051
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6316
|
-
compile(): CompiledExpression$
|
|
7052
|
+
compile(): CompiledExpression$9;
|
|
6317
7053
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6318
7054
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6319
7055
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6348,7 +7084,7 @@ declare const createBlockNode: FactoryFunction<{
|
|
|
6348
7084
|
get type(): string;
|
|
6349
7085
|
get isNode(): boolean;
|
|
6350
7086
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6351
|
-
compile(): CompiledExpression$
|
|
7087
|
+
compile(): CompiledExpression$9;
|
|
6352
7088
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6353
7089
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6354
7090
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6445,12 +7181,12 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6445
7181
|
_toTex(options?: StringOptions$7): string;
|
|
6446
7182
|
get isNode(): boolean;
|
|
6447
7183
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6448
|
-
compile(): CompiledExpression$
|
|
7184
|
+
compile(): CompiledExpression$9;
|
|
6449
7185
|
_ifNode(node: unknown): {
|
|
6450
7186
|
get type(): string;
|
|
6451
7187
|
get isNode(): boolean;
|
|
6452
7188
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6453
|
-
compile(): CompiledExpression$
|
|
7189
|
+
compile(): CompiledExpression$9;
|
|
6454
7190
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6455
7191
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6456
7192
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6478,7 +7214,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6478
7214
|
get type(): string;
|
|
6479
7215
|
get isNode(): boolean;
|
|
6480
7216
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6481
|
-
compile(): CompiledExpression$
|
|
7217
|
+
compile(): CompiledExpression$9;
|
|
6482
7218
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6483
7219
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6484
7220
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6505,7 +7241,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6505
7241
|
get type(): string;
|
|
6506
7242
|
get isNode(): boolean;
|
|
6507
7243
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6508
|
-
compile(): CompiledExpression$
|
|
7244
|
+
compile(): CompiledExpression$9;
|
|
6509
7245
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6510
7246
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6511
7247
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6533,7 +7269,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6533
7269
|
get type(): string;
|
|
6534
7270
|
get isNode(): boolean;
|
|
6535
7271
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6536
|
-
compile(): CompiledExpression$
|
|
7272
|
+
compile(): CompiledExpression$9;
|
|
6537
7273
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6538
7274
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6539
7275
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6560,7 +7296,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6560
7296
|
get type(): string;
|
|
6561
7297
|
get isNode(): boolean;
|
|
6562
7298
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6563
|
-
compile(): CompiledExpression$
|
|
7299
|
+
compile(): CompiledExpression$9;
|
|
6564
7300
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6565
7301
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6566
7302
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6587,7 +7323,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6587
7323
|
get type(): string;
|
|
6588
7324
|
get isNode(): boolean;
|
|
6589
7325
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6590
|
-
compile(): CompiledExpression$
|
|
7326
|
+
compile(): CompiledExpression$9;
|
|
6591
7327
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6592
7328
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6593
7329
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6614,7 +7350,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6614
7350
|
get type(): string;
|
|
6615
7351
|
get isNode(): boolean;
|
|
6616
7352
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6617
|
-
compile(): CompiledExpression$
|
|
7353
|
+
compile(): CompiledExpression$9;
|
|
6618
7354
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6619
7355
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6620
7356
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6642,7 +7378,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6642
7378
|
get type(): string;
|
|
6643
7379
|
get isNode(): boolean;
|
|
6644
7380
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6645
|
-
compile(): CompiledExpression$
|
|
7381
|
+
compile(): CompiledExpression$9;
|
|
6646
7382
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6647
7383
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6648
7384
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6669,7 +7405,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6669
7405
|
get type(): string;
|
|
6670
7406
|
get isNode(): boolean;
|
|
6671
7407
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6672
|
-
compile(): CompiledExpression$
|
|
7408
|
+
compile(): CompiledExpression$9;
|
|
6673
7409
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6674
7410
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6675
7411
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6696,7 +7432,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6696
7432
|
get type(): string;
|
|
6697
7433
|
get isNode(): boolean;
|
|
6698
7434
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6699
|
-
compile(): CompiledExpression$
|
|
7435
|
+
compile(): CompiledExpression$9;
|
|
6700
7436
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6701
7437
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6702
7438
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6724,7 +7460,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6724
7460
|
get type(): string;
|
|
6725
7461
|
get isNode(): boolean;
|
|
6726
7462
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6727
|
-
compile(): CompiledExpression$
|
|
7463
|
+
compile(): CompiledExpression$9;
|
|
6728
7464
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6729
7465
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6730
7466
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6752,7 +7488,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6752
7488
|
get type(): string;
|
|
6753
7489
|
get isNode(): boolean;
|
|
6754
7490
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6755
|
-
compile(): CompiledExpression$
|
|
7491
|
+
compile(): CompiledExpression$9;
|
|
6756
7492
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6757
7493
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6758
7494
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6787,7 +7523,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6787
7523
|
get type(): string;
|
|
6788
7524
|
get isNode(): boolean;
|
|
6789
7525
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6790
|
-
compile(): CompiledExpression$
|
|
7526
|
+
compile(): CompiledExpression$9;
|
|
6791
7527
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6792
7528
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6793
7529
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6897,12 +7633,12 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6897
7633
|
_toTex(options?: StringOptions$7): string;
|
|
6898
7634
|
get isNode(): boolean;
|
|
6899
7635
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6900
|
-
compile(): CompiledExpression$
|
|
7636
|
+
compile(): CompiledExpression$9;
|
|
6901
7637
|
_ifNode(node: unknown): {
|
|
6902
7638
|
get type(): string;
|
|
6903
7639
|
get isNode(): boolean;
|
|
6904
7640
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6905
|
-
compile(): CompiledExpression$
|
|
7641
|
+
compile(): CompiledExpression$9;
|
|
6906
7642
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6907
7643
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6908
7644
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6930,7 +7666,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6930
7666
|
get type(): string;
|
|
6931
7667
|
get isNode(): boolean;
|
|
6932
7668
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6933
|
-
compile(): CompiledExpression$
|
|
7669
|
+
compile(): CompiledExpression$9;
|
|
6934
7670
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6935
7671
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6936
7672
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6957,7 +7693,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6957
7693
|
get type(): string;
|
|
6958
7694
|
get isNode(): boolean;
|
|
6959
7695
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6960
|
-
compile(): CompiledExpression$
|
|
7696
|
+
compile(): CompiledExpression$9;
|
|
6961
7697
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6962
7698
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6963
7699
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -6985,7 +7721,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
6985
7721
|
get type(): string;
|
|
6986
7722
|
get isNode(): boolean;
|
|
6987
7723
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
6988
|
-
compile(): CompiledExpression$
|
|
7724
|
+
compile(): CompiledExpression$9;
|
|
6989
7725
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
6990
7726
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
6991
7727
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7012,7 +7748,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7012
7748
|
get type(): string;
|
|
7013
7749
|
get isNode(): boolean;
|
|
7014
7750
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7015
|
-
compile(): CompiledExpression$
|
|
7751
|
+
compile(): CompiledExpression$9;
|
|
7016
7752
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7017
7753
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7018
7754
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7039,7 +7775,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7039
7775
|
get type(): string;
|
|
7040
7776
|
get isNode(): boolean;
|
|
7041
7777
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7042
|
-
compile(): CompiledExpression$
|
|
7778
|
+
compile(): CompiledExpression$9;
|
|
7043
7779
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7044
7780
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7045
7781
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7066,7 +7802,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7066
7802
|
get type(): string;
|
|
7067
7803
|
get isNode(): boolean;
|
|
7068
7804
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7069
|
-
compile(): CompiledExpression$
|
|
7805
|
+
compile(): CompiledExpression$9;
|
|
7070
7806
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7071
7807
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7072
7808
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7094,7 +7830,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7094
7830
|
get type(): string;
|
|
7095
7831
|
get isNode(): boolean;
|
|
7096
7832
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7097
|
-
compile(): CompiledExpression$
|
|
7833
|
+
compile(): CompiledExpression$9;
|
|
7098
7834
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7099
7835
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7100
7836
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7121,7 +7857,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7121
7857
|
get type(): string;
|
|
7122
7858
|
get isNode(): boolean;
|
|
7123
7859
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7124
|
-
compile(): CompiledExpression$
|
|
7860
|
+
compile(): CompiledExpression$9;
|
|
7125
7861
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7126
7862
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7127
7863
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7148,7 +7884,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7148
7884
|
get type(): string;
|
|
7149
7885
|
get isNode(): boolean;
|
|
7150
7886
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7151
|
-
compile(): CompiledExpression$
|
|
7887
|
+
compile(): CompiledExpression$9;
|
|
7152
7888
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7153
7889
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7154
7890
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7176,7 +7912,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7176
7912
|
get type(): string;
|
|
7177
7913
|
get isNode(): boolean;
|
|
7178
7914
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7179
|
-
compile(): CompiledExpression$
|
|
7915
|
+
compile(): CompiledExpression$9;
|
|
7180
7916
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7181
7917
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7182
7918
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7204,7 +7940,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7204
7940
|
get type(): string;
|
|
7205
7941
|
get isNode(): boolean;
|
|
7206
7942
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7207
|
-
compile(): CompiledExpression$
|
|
7943
|
+
compile(): CompiledExpression$9;
|
|
7208
7944
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7209
7945
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7210
7946
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7239,7 +7975,7 @@ declare const createConditionalNode: FactoryFunction<{
|
|
|
7239
7975
|
get type(): string;
|
|
7240
7976
|
get isNode(): boolean;
|
|
7241
7977
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7242
|
-
compile(): CompiledExpression$
|
|
7978
|
+
compile(): CompiledExpression$9;
|
|
7243
7979
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7244
7980
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7245
7981
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7334,12 +8070,12 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7334
8070
|
_toTex(options?: StringOptions$7): string;
|
|
7335
8071
|
get isNode(): boolean;
|
|
7336
8072
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7337
|
-
compile(): CompiledExpression$
|
|
8073
|
+
compile(): CompiledExpression$9;
|
|
7338
8074
|
_ifNode(node: unknown): {
|
|
7339
8075
|
get type(): string;
|
|
7340
8076
|
get isNode(): boolean;
|
|
7341
8077
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7342
|
-
compile(): CompiledExpression$
|
|
8078
|
+
compile(): CompiledExpression$9;
|
|
7343
8079
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7344
8080
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7345
8081
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7367,7 +8103,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7367
8103
|
get type(): string;
|
|
7368
8104
|
get isNode(): boolean;
|
|
7369
8105
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7370
|
-
compile(): CompiledExpression$
|
|
8106
|
+
compile(): CompiledExpression$9;
|
|
7371
8107
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7372
8108
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7373
8109
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7394,7 +8130,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7394
8130
|
get type(): string;
|
|
7395
8131
|
get isNode(): boolean;
|
|
7396
8132
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7397
|
-
compile(): CompiledExpression$
|
|
8133
|
+
compile(): CompiledExpression$9;
|
|
7398
8134
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7399
8135
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7400
8136
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7422,7 +8158,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7422
8158
|
get type(): string;
|
|
7423
8159
|
get isNode(): boolean;
|
|
7424
8160
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7425
|
-
compile(): CompiledExpression$
|
|
8161
|
+
compile(): CompiledExpression$9;
|
|
7426
8162
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7427
8163
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7428
8164
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7449,7 +8185,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7449
8185
|
get type(): string;
|
|
7450
8186
|
get isNode(): boolean;
|
|
7451
8187
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7452
|
-
compile(): CompiledExpression$
|
|
8188
|
+
compile(): CompiledExpression$9;
|
|
7453
8189
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7454
8190
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7455
8191
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7476,7 +8212,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7476
8212
|
get type(): string;
|
|
7477
8213
|
get isNode(): boolean;
|
|
7478
8214
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7479
|
-
compile(): CompiledExpression$
|
|
8215
|
+
compile(): CompiledExpression$9;
|
|
7480
8216
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7481
8217
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7482
8218
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7503,7 +8239,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7503
8239
|
get type(): string;
|
|
7504
8240
|
get isNode(): boolean;
|
|
7505
8241
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7506
|
-
compile(): CompiledExpression$
|
|
8242
|
+
compile(): CompiledExpression$9;
|
|
7507
8243
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7508
8244
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7509
8245
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7531,7 +8267,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7531
8267
|
get type(): string;
|
|
7532
8268
|
get isNode(): boolean;
|
|
7533
8269
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7534
|
-
compile(): CompiledExpression$
|
|
8270
|
+
compile(): CompiledExpression$9;
|
|
7535
8271
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7536
8272
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7537
8273
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7558,7 +8294,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7558
8294
|
get type(): string;
|
|
7559
8295
|
get isNode(): boolean;
|
|
7560
8296
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7561
|
-
compile(): CompiledExpression$
|
|
8297
|
+
compile(): CompiledExpression$9;
|
|
7562
8298
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7563
8299
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7564
8300
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7585,7 +8321,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7585
8321
|
get type(): string;
|
|
7586
8322
|
get isNode(): boolean;
|
|
7587
8323
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7588
|
-
compile(): CompiledExpression$
|
|
8324
|
+
compile(): CompiledExpression$9;
|
|
7589
8325
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7590
8326
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7591
8327
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7613,7 +8349,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7613
8349
|
get type(): string;
|
|
7614
8350
|
get isNode(): boolean;
|
|
7615
8351
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7616
|
-
compile(): CompiledExpression$
|
|
8352
|
+
compile(): CompiledExpression$9;
|
|
7617
8353
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7618
8354
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7619
8355
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7641,7 +8377,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7641
8377
|
get type(): string;
|
|
7642
8378
|
get isNode(): boolean;
|
|
7643
8379
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7644
|
-
compile(): CompiledExpression$
|
|
8380
|
+
compile(): CompiledExpression$9;
|
|
7645
8381
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7646
8382
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7647
8383
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7675,7 +8411,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7675
8411
|
get type(): string;
|
|
7676
8412
|
get isNode(): boolean;
|
|
7677
8413
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7678
|
-
compile(): CompiledExpression$
|
|
8414
|
+
compile(): CompiledExpression$9;
|
|
7679
8415
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7680
8416
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7681
8417
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7774,12 +8510,12 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7774
8510
|
_toTex(options?: StringOptions$7): string;
|
|
7775
8511
|
get isNode(): boolean;
|
|
7776
8512
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7777
|
-
compile(): CompiledExpression$
|
|
8513
|
+
compile(): CompiledExpression$9;
|
|
7778
8514
|
_ifNode(node: unknown): {
|
|
7779
8515
|
get type(): string;
|
|
7780
8516
|
get isNode(): boolean;
|
|
7781
8517
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7782
|
-
compile(): CompiledExpression$
|
|
8518
|
+
compile(): CompiledExpression$9;
|
|
7783
8519
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7784
8520
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7785
8521
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7807,7 +8543,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7807
8543
|
get type(): string;
|
|
7808
8544
|
get isNode(): boolean;
|
|
7809
8545
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7810
|
-
compile(): CompiledExpression$
|
|
8546
|
+
compile(): CompiledExpression$9;
|
|
7811
8547
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7812
8548
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7813
8549
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7834,7 +8570,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7834
8570
|
get type(): string;
|
|
7835
8571
|
get isNode(): boolean;
|
|
7836
8572
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7837
|
-
compile(): CompiledExpression$
|
|
8573
|
+
compile(): CompiledExpression$9;
|
|
7838
8574
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7839
8575
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7840
8576
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7862,7 +8598,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7862
8598
|
get type(): string;
|
|
7863
8599
|
get isNode(): boolean;
|
|
7864
8600
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7865
|
-
compile(): CompiledExpression$
|
|
8601
|
+
compile(): CompiledExpression$9;
|
|
7866
8602
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7867
8603
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7868
8604
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7889,7 +8625,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7889
8625
|
get type(): string;
|
|
7890
8626
|
get isNode(): boolean;
|
|
7891
8627
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7892
|
-
compile(): CompiledExpression$
|
|
8628
|
+
compile(): CompiledExpression$9;
|
|
7893
8629
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7894
8630
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7895
8631
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7916,7 +8652,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7916
8652
|
get type(): string;
|
|
7917
8653
|
get isNode(): boolean;
|
|
7918
8654
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7919
|
-
compile(): CompiledExpression$
|
|
8655
|
+
compile(): CompiledExpression$9;
|
|
7920
8656
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7921
8657
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7922
8658
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7943,7 +8679,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7943
8679
|
get type(): string;
|
|
7944
8680
|
get isNode(): boolean;
|
|
7945
8681
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7946
|
-
compile(): CompiledExpression$
|
|
8682
|
+
compile(): CompiledExpression$9;
|
|
7947
8683
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7948
8684
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7949
8685
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7971,7 +8707,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7971
8707
|
get type(): string;
|
|
7972
8708
|
get isNode(): boolean;
|
|
7973
8709
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
7974
|
-
compile(): CompiledExpression$
|
|
8710
|
+
compile(): CompiledExpression$9;
|
|
7975
8711
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
7976
8712
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
7977
8713
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -7998,7 +8734,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
7998
8734
|
get type(): string;
|
|
7999
8735
|
get isNode(): boolean;
|
|
8000
8736
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8001
|
-
compile(): CompiledExpression$
|
|
8737
|
+
compile(): CompiledExpression$9;
|
|
8002
8738
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8003
8739
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8004
8740
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8025,7 +8761,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
8025
8761
|
get type(): string;
|
|
8026
8762
|
get isNode(): boolean;
|
|
8027
8763
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8028
|
-
compile(): CompiledExpression$
|
|
8764
|
+
compile(): CompiledExpression$9;
|
|
8029
8765
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8030
8766
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8031
8767
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8053,7 +8789,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
8053
8789
|
get type(): string;
|
|
8054
8790
|
get isNode(): boolean;
|
|
8055
8791
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8056
|
-
compile(): CompiledExpression$
|
|
8792
|
+
compile(): CompiledExpression$9;
|
|
8057
8793
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8058
8794
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8059
8795
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8081,7 +8817,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
8081
8817
|
get type(): string;
|
|
8082
8818
|
get isNode(): boolean;
|
|
8083
8819
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8084
|
-
compile(): CompiledExpression$
|
|
8820
|
+
compile(): CompiledExpression$9;
|
|
8085
8821
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8086
8822
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8087
8823
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8115,7 +8851,7 @@ declare const createConstantNode: FactoryFunction<{
|
|
|
8115
8851
|
get type(): string;
|
|
8116
8852
|
get isNode(): boolean;
|
|
8117
8853
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8118
|
-
compile(): CompiledExpression$
|
|
8854
|
+
compile(): CompiledExpression$9;
|
|
8119
8855
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8120
8856
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8121
8857
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8219,12 +8955,12 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8219
8955
|
_toTex(options?: StringOptions$7): string;
|
|
8220
8956
|
get isNode(): boolean;
|
|
8221
8957
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8222
|
-
compile(): CompiledExpression$
|
|
8958
|
+
compile(): CompiledExpression$9;
|
|
8223
8959
|
_ifNode(node: unknown): {
|
|
8224
8960
|
get type(): string;
|
|
8225
8961
|
get isNode(): boolean;
|
|
8226
8962
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8227
|
-
compile(): CompiledExpression$
|
|
8963
|
+
compile(): CompiledExpression$9;
|
|
8228
8964
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8229
8965
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8230
8966
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8252,7 +8988,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8252
8988
|
get type(): string;
|
|
8253
8989
|
get isNode(): boolean;
|
|
8254
8990
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8255
|
-
compile(): CompiledExpression$
|
|
8991
|
+
compile(): CompiledExpression$9;
|
|
8256
8992
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8257
8993
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8258
8994
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8279,7 +9015,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8279
9015
|
get type(): string;
|
|
8280
9016
|
get isNode(): boolean;
|
|
8281
9017
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8282
|
-
compile(): CompiledExpression$
|
|
9018
|
+
compile(): CompiledExpression$9;
|
|
8283
9019
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8284
9020
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8285
9021
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8307,7 +9043,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8307
9043
|
get type(): string;
|
|
8308
9044
|
get isNode(): boolean;
|
|
8309
9045
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8310
|
-
compile(): CompiledExpression$
|
|
9046
|
+
compile(): CompiledExpression$9;
|
|
8311
9047
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8312
9048
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8313
9049
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8334,7 +9070,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8334
9070
|
get type(): string;
|
|
8335
9071
|
get isNode(): boolean;
|
|
8336
9072
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8337
|
-
compile(): CompiledExpression$
|
|
9073
|
+
compile(): CompiledExpression$9;
|
|
8338
9074
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8339
9075
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8340
9076
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8361,7 +9097,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8361
9097
|
get type(): string;
|
|
8362
9098
|
get isNode(): boolean;
|
|
8363
9099
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8364
|
-
compile(): CompiledExpression$
|
|
9100
|
+
compile(): CompiledExpression$9;
|
|
8365
9101
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8366
9102
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8367
9103
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8388,7 +9124,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8388
9124
|
get type(): string;
|
|
8389
9125
|
get isNode(): boolean;
|
|
8390
9126
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8391
|
-
compile(): CompiledExpression$
|
|
9127
|
+
compile(): CompiledExpression$9;
|
|
8392
9128
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8393
9129
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8394
9130
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8416,7 +9152,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8416
9152
|
get type(): string;
|
|
8417
9153
|
get isNode(): boolean;
|
|
8418
9154
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8419
|
-
compile(): CompiledExpression$
|
|
9155
|
+
compile(): CompiledExpression$9;
|
|
8420
9156
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8421
9157
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8422
9158
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8443,7 +9179,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8443
9179
|
get type(): string;
|
|
8444
9180
|
get isNode(): boolean;
|
|
8445
9181
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8446
|
-
compile(): CompiledExpression$
|
|
9182
|
+
compile(): CompiledExpression$9;
|
|
8447
9183
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8448
9184
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8449
9185
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8470,7 +9206,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8470
9206
|
get type(): string;
|
|
8471
9207
|
get isNode(): boolean;
|
|
8472
9208
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8473
|
-
compile(): CompiledExpression$
|
|
9209
|
+
compile(): CompiledExpression$9;
|
|
8474
9210
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8475
9211
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8476
9212
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8498,7 +9234,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8498
9234
|
get type(): string;
|
|
8499
9235
|
get isNode(): boolean;
|
|
8500
9236
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8501
|
-
compile(): CompiledExpression$
|
|
9237
|
+
compile(): CompiledExpression$9;
|
|
8502
9238
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8503
9239
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8504
9240
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8526,7 +9262,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8526
9262
|
get type(): string;
|
|
8527
9263
|
get isNode(): boolean;
|
|
8528
9264
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8529
|
-
compile(): CompiledExpression$
|
|
9265
|
+
compile(): CompiledExpression$9;
|
|
8530
9266
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8531
9267
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8532
9268
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8561,7 +9297,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8561
9297
|
get type(): string;
|
|
8562
9298
|
get isNode(): boolean;
|
|
8563
9299
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8564
|
-
compile(): CompiledExpression$
|
|
9300
|
+
compile(): CompiledExpression$9;
|
|
8565
9301
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8566
9302
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8567
9303
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8671,12 +9407,12 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8671
9407
|
_toTex(options?: StringOptions$7): string;
|
|
8672
9408
|
get isNode(): boolean;
|
|
8673
9409
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8674
|
-
compile(): CompiledExpression$
|
|
9410
|
+
compile(): CompiledExpression$9;
|
|
8675
9411
|
_ifNode(node: unknown): {
|
|
8676
9412
|
get type(): string;
|
|
8677
9413
|
get isNode(): boolean;
|
|
8678
9414
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8679
|
-
compile(): CompiledExpression$
|
|
9415
|
+
compile(): CompiledExpression$9;
|
|
8680
9416
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8681
9417
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8682
9418
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8704,7 +9440,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8704
9440
|
get type(): string;
|
|
8705
9441
|
get isNode(): boolean;
|
|
8706
9442
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8707
|
-
compile(): CompiledExpression$
|
|
9443
|
+
compile(): CompiledExpression$9;
|
|
8708
9444
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8709
9445
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8710
9446
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8731,7 +9467,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8731
9467
|
get type(): string;
|
|
8732
9468
|
get isNode(): boolean;
|
|
8733
9469
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8734
|
-
compile(): CompiledExpression$
|
|
9470
|
+
compile(): CompiledExpression$9;
|
|
8735
9471
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8736
9472
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8737
9473
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8759,7 +9495,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8759
9495
|
get type(): string;
|
|
8760
9496
|
get isNode(): boolean;
|
|
8761
9497
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8762
|
-
compile(): CompiledExpression$
|
|
9498
|
+
compile(): CompiledExpression$9;
|
|
8763
9499
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8764
9500
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8765
9501
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8786,7 +9522,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8786
9522
|
get type(): string;
|
|
8787
9523
|
get isNode(): boolean;
|
|
8788
9524
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8789
|
-
compile(): CompiledExpression$
|
|
9525
|
+
compile(): CompiledExpression$9;
|
|
8790
9526
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8791
9527
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8792
9528
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8813,7 +9549,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8813
9549
|
get type(): string;
|
|
8814
9550
|
get isNode(): boolean;
|
|
8815
9551
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8816
|
-
compile(): CompiledExpression$
|
|
9552
|
+
compile(): CompiledExpression$9;
|
|
8817
9553
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8818
9554
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8819
9555
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8840,7 +9576,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8840
9576
|
get type(): string;
|
|
8841
9577
|
get isNode(): boolean;
|
|
8842
9578
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8843
|
-
compile(): CompiledExpression$
|
|
9579
|
+
compile(): CompiledExpression$9;
|
|
8844
9580
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8845
9581
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8846
9582
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8868,7 +9604,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8868
9604
|
get type(): string;
|
|
8869
9605
|
get isNode(): boolean;
|
|
8870
9606
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8871
|
-
compile(): CompiledExpression$
|
|
9607
|
+
compile(): CompiledExpression$9;
|
|
8872
9608
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8873
9609
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8874
9610
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8895,7 +9631,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8895
9631
|
get type(): string;
|
|
8896
9632
|
get isNode(): boolean;
|
|
8897
9633
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8898
|
-
compile(): CompiledExpression$
|
|
9634
|
+
compile(): CompiledExpression$9;
|
|
8899
9635
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8900
9636
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8901
9637
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8922,7 +9658,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8922
9658
|
get type(): string;
|
|
8923
9659
|
get isNode(): boolean;
|
|
8924
9660
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8925
|
-
compile(): CompiledExpression$
|
|
9661
|
+
compile(): CompiledExpression$9;
|
|
8926
9662
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8927
9663
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8928
9664
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8950,7 +9686,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8950
9686
|
get type(): string;
|
|
8951
9687
|
get isNode(): boolean;
|
|
8952
9688
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8953
|
-
compile(): CompiledExpression$
|
|
9689
|
+
compile(): CompiledExpression$9;
|
|
8954
9690
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8955
9691
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8956
9692
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -8978,7 +9714,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
8978
9714
|
get type(): string;
|
|
8979
9715
|
get isNode(): boolean;
|
|
8980
9716
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
8981
|
-
compile(): CompiledExpression$
|
|
9717
|
+
compile(): CompiledExpression$9;
|
|
8982
9718
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
8983
9719
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
8984
9720
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9013,7 +9749,7 @@ declare const createFunctionAssignmentNode: FactoryFunction<{
|
|
|
9013
9749
|
get type(): string;
|
|
9014
9750
|
get isNode(): boolean;
|
|
9015
9751
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9016
|
-
compile(): CompiledExpression$
|
|
9752
|
+
compile(): CompiledExpression$9;
|
|
9017
9753
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9018
9754
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9019
9755
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9143,12 +9879,12 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9143
9879
|
getIdentifier(): string;
|
|
9144
9880
|
get isNode(): boolean;
|
|
9145
9881
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9146
|
-
compile(): CompiledExpression$
|
|
9882
|
+
compile(): CompiledExpression$9;
|
|
9147
9883
|
_ifNode(node: unknown): {
|
|
9148
9884
|
get type(): string;
|
|
9149
9885
|
get isNode(): boolean;
|
|
9150
9886
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9151
|
-
compile(): CompiledExpression$
|
|
9887
|
+
compile(): CompiledExpression$9;
|
|
9152
9888
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9153
9889
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9154
9890
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9176,7 +9912,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9176
9912
|
get type(): string;
|
|
9177
9913
|
get isNode(): boolean;
|
|
9178
9914
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9179
|
-
compile(): CompiledExpression$
|
|
9915
|
+
compile(): CompiledExpression$9;
|
|
9180
9916
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9181
9917
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9182
9918
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9203,7 +9939,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9203
9939
|
get type(): string;
|
|
9204
9940
|
get isNode(): boolean;
|
|
9205
9941
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9206
|
-
compile(): CompiledExpression$
|
|
9942
|
+
compile(): CompiledExpression$9;
|
|
9207
9943
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9208
9944
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9209
9945
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9231,7 +9967,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9231
9967
|
get type(): string;
|
|
9232
9968
|
get isNode(): boolean;
|
|
9233
9969
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9234
|
-
compile(): CompiledExpression$
|
|
9970
|
+
compile(): CompiledExpression$9;
|
|
9235
9971
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9236
9972
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9237
9973
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9258,7 +9994,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9258
9994
|
get type(): string;
|
|
9259
9995
|
get isNode(): boolean;
|
|
9260
9996
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9261
|
-
compile(): CompiledExpression$
|
|
9997
|
+
compile(): CompiledExpression$9;
|
|
9262
9998
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9263
9999
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9264
10000
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9285,7 +10021,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9285
10021
|
get type(): string;
|
|
9286
10022
|
get isNode(): boolean;
|
|
9287
10023
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9288
|
-
compile(): CompiledExpression$
|
|
10024
|
+
compile(): CompiledExpression$9;
|
|
9289
10025
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9290
10026
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9291
10027
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9312,7 +10048,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9312
10048
|
get type(): string;
|
|
9313
10049
|
get isNode(): boolean;
|
|
9314
10050
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9315
|
-
compile(): CompiledExpression$
|
|
10051
|
+
compile(): CompiledExpression$9;
|
|
9316
10052
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9317
10053
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9318
10054
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9340,7 +10076,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9340
10076
|
get type(): string;
|
|
9341
10077
|
get isNode(): boolean;
|
|
9342
10078
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9343
|
-
compile(): CompiledExpression$
|
|
10079
|
+
compile(): CompiledExpression$9;
|
|
9344
10080
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9345
10081
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9346
10082
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9367,7 +10103,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9367
10103
|
get type(): string;
|
|
9368
10104
|
get isNode(): boolean;
|
|
9369
10105
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9370
|
-
compile(): CompiledExpression$
|
|
10106
|
+
compile(): CompiledExpression$9;
|
|
9371
10107
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9372
10108
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9373
10109
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9394,7 +10130,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9394
10130
|
get type(): string;
|
|
9395
10131
|
get isNode(): boolean;
|
|
9396
10132
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9397
|
-
compile(): CompiledExpression$
|
|
10133
|
+
compile(): CompiledExpression$9;
|
|
9398
10134
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9399
10135
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9400
10136
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9422,7 +10158,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9422
10158
|
get type(): string;
|
|
9423
10159
|
get isNode(): boolean;
|
|
9424
10160
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9425
|
-
compile(): CompiledExpression$
|
|
10161
|
+
compile(): CompiledExpression$9;
|
|
9426
10162
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9427
10163
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9428
10164
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9450,7 +10186,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9450
10186
|
get type(): string;
|
|
9451
10187
|
get isNode(): boolean;
|
|
9452
10188
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9453
|
-
compile(): CompiledExpression$
|
|
10189
|
+
compile(): CompiledExpression$9;
|
|
9454
10190
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9455
10191
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9456
10192
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9481,7 +10217,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9481
10217
|
get type(): string;
|
|
9482
10218
|
get isNode(): boolean;
|
|
9483
10219
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9484
|
-
compile(): CompiledExpression$
|
|
10220
|
+
compile(): CompiledExpression$9;
|
|
9485
10221
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9486
10222
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9487
10223
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9620,12 +10356,12 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9620
10356
|
getIdentifier(): string;
|
|
9621
10357
|
get isNode(): boolean;
|
|
9622
10358
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9623
|
-
compile(): CompiledExpression$
|
|
10359
|
+
compile(): CompiledExpression$9;
|
|
9624
10360
|
_ifNode(node: unknown): {
|
|
9625
10361
|
get type(): string;
|
|
9626
10362
|
get isNode(): boolean;
|
|
9627
10363
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9628
|
-
compile(): CompiledExpression$
|
|
10364
|
+
compile(): CompiledExpression$9;
|
|
9629
10365
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9630
10366
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9631
10367
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9653,7 +10389,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9653
10389
|
get type(): string;
|
|
9654
10390
|
get isNode(): boolean;
|
|
9655
10391
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9656
|
-
compile(): CompiledExpression$
|
|
10392
|
+
compile(): CompiledExpression$9;
|
|
9657
10393
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9658
10394
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9659
10395
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9680,7 +10416,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9680
10416
|
get type(): string;
|
|
9681
10417
|
get isNode(): boolean;
|
|
9682
10418
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9683
|
-
compile(): CompiledExpression$
|
|
10419
|
+
compile(): CompiledExpression$9;
|
|
9684
10420
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9685
10421
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9686
10422
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9708,7 +10444,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9708
10444
|
get type(): string;
|
|
9709
10445
|
get isNode(): boolean;
|
|
9710
10446
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9711
|
-
compile(): CompiledExpression$
|
|
10447
|
+
compile(): CompiledExpression$9;
|
|
9712
10448
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9713
10449
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9714
10450
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9735,7 +10471,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9735
10471
|
get type(): string;
|
|
9736
10472
|
get isNode(): boolean;
|
|
9737
10473
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9738
|
-
compile(): CompiledExpression$
|
|
10474
|
+
compile(): CompiledExpression$9;
|
|
9739
10475
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9740
10476
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9741
10477
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9762,7 +10498,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9762
10498
|
get type(): string;
|
|
9763
10499
|
get isNode(): boolean;
|
|
9764
10500
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9765
|
-
compile(): CompiledExpression$
|
|
10501
|
+
compile(): CompiledExpression$9;
|
|
9766
10502
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9767
10503
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9768
10504
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9789,7 +10525,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9789
10525
|
get type(): string;
|
|
9790
10526
|
get isNode(): boolean;
|
|
9791
10527
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9792
|
-
compile(): CompiledExpression$
|
|
10528
|
+
compile(): CompiledExpression$9;
|
|
9793
10529
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9794
10530
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9795
10531
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9817,7 +10553,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9817
10553
|
get type(): string;
|
|
9818
10554
|
get isNode(): boolean;
|
|
9819
10555
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9820
|
-
compile(): CompiledExpression$
|
|
10556
|
+
compile(): CompiledExpression$9;
|
|
9821
10557
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9822
10558
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9823
10559
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9844,7 +10580,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9844
10580
|
get type(): string;
|
|
9845
10581
|
get isNode(): boolean;
|
|
9846
10582
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9847
|
-
compile(): CompiledExpression$
|
|
10583
|
+
compile(): CompiledExpression$9;
|
|
9848
10584
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9849
10585
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9850
10586
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9871,7 +10607,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9871
10607
|
get type(): string;
|
|
9872
10608
|
get isNode(): boolean;
|
|
9873
10609
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9874
|
-
compile(): CompiledExpression$
|
|
10610
|
+
compile(): CompiledExpression$9;
|
|
9875
10611
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9876
10612
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9877
10613
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9899,7 +10635,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9899
10635
|
get type(): string;
|
|
9900
10636
|
get isNode(): boolean;
|
|
9901
10637
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9902
|
-
compile(): CompiledExpression$
|
|
10638
|
+
compile(): CompiledExpression$9;
|
|
9903
10639
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9904
10640
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9905
10641
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9927,7 +10663,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9927
10663
|
get type(): string;
|
|
9928
10664
|
get isNode(): boolean;
|
|
9929
10665
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9930
|
-
compile(): CompiledExpression$
|
|
10666
|
+
compile(): CompiledExpression$9;
|
|
9931
10667
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9932
10668
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9933
10669
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9958,7 +10694,7 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9958
10694
|
get type(): string;
|
|
9959
10695
|
get isNode(): boolean;
|
|
9960
10696
|
evaluate(scope?: Record<string, unknown>): unknown;
|
|
9961
|
-
compile(): CompiledExpression$
|
|
10697
|
+
compile(): CompiledExpression$9;
|
|
9962
10698
|
_compile(_math: Record<string, unknown>, _argNames: Record<string, boolean>): (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
9963
10699
|
forEach(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => void): void;
|
|
9964
10700
|
map(_callback: (child: /*elided*/ any, path: string, parent: /*elided*/ any) => /*elided*/ any): /*elided*/ any;
|
|
@@ -9985,10 +10721,10 @@ declare const createFunctionNode: FactoryFunction<{
|
|
|
9985
10721
|
};
|
|
9986
10722
|
}>;
|
|
9987
10723
|
|
|
9988
|
-
interface Node$
|
|
10724
|
+
interface Node$e {
|
|
9989
10725
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$6;
|
|
9990
|
-
_ifNode: (node: unknown) => Node$
|
|
9991
|
-
filter: (callback: (node: Node$
|
|
10726
|
+
_ifNode: (node: unknown) => Node$e;
|
|
10727
|
+
filter: (callback: (node: Node$e) => boolean) => Node$e[];
|
|
9992
10728
|
isSymbolNode?: boolean;
|
|
9993
10729
|
name?: string;
|
|
9994
10730
|
value?: unknown;
|
|
@@ -10000,13 +10736,13 @@ type CompileFunction$6 = (scope: Map<string, unknown>, args: Record<string, unkn
|
|
|
10000
10736
|
interface StringOptions$6 {
|
|
10001
10737
|
[key: string]: unknown;
|
|
10002
10738
|
}
|
|
10003
|
-
interface Dependencies$
|
|
10004
|
-
Node: new (...args: unknown[]) => Node$
|
|
10739
|
+
interface Dependencies$v {
|
|
10740
|
+
Node: new (...args: unknown[]) => Node$e;
|
|
10005
10741
|
size: (value: unknown) => number[];
|
|
10006
10742
|
}
|
|
10007
|
-
declare const createIndexNode: FactoryFunction<Dependencies$
|
|
10008
|
-
new (dimensions: Node$
|
|
10009
|
-
dimensions: Node$
|
|
10743
|
+
declare const createIndexNode: FactoryFunction<Dependencies$v, {
|
|
10744
|
+
new (dimensions: Node$e[], dotNotation?: boolean): {
|
|
10745
|
+
dimensions: Node$e[];
|
|
10010
10746
|
dotNotation: boolean;
|
|
10011
10747
|
get type(): string;
|
|
10012
10748
|
get isIndexNode(): boolean;
|
|
@@ -10028,14 +10764,14 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10028
10764
|
* Execute a callback for each of the child nodes of this node
|
|
10029
10765
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10030
10766
|
*/
|
|
10031
|
-
forEach(callback: (child: Node$
|
|
10767
|
+
forEach(callback: (child: Node$e, path: string, parent: /*elided*/ any) => void): void;
|
|
10032
10768
|
/**
|
|
10033
10769
|
* Create a new IndexNode whose children are the results of calling
|
|
10034
10770
|
* the provided callback function for each child of the original node.
|
|
10035
10771
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10036
10772
|
* @returns {IndexNode} Returns a transformed copy of the node
|
|
10037
10773
|
*/
|
|
10038
|
-
map(callback: (child: Node$
|
|
10774
|
+
map(callback: (child: Node$e, path: string, parent: /*elided*/ any) => Node$e): /*elided*/ any;
|
|
10039
10775
|
/**
|
|
10040
10776
|
* Create a clone of this node, a shallow copy
|
|
10041
10777
|
* @return {IndexNode}
|
|
@@ -10075,8 +10811,8 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10075
10811
|
* @return {string} str
|
|
10076
10812
|
*/
|
|
10077
10813
|
_toTex(options?: StringOptions$6): string;
|
|
10078
|
-
_ifNode: (node: unknown) => Node$
|
|
10079
|
-
filter: (callback: (node: Node$
|
|
10814
|
+
_ifNode: (node: unknown) => Node$e;
|
|
10815
|
+
filter: (callback: (node: Node$e) => boolean) => Node$e[];
|
|
10080
10816
|
isSymbolNode?: boolean;
|
|
10081
10817
|
name?: string;
|
|
10082
10818
|
value?: unknown;
|
|
@@ -10094,10 +10830,10 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10094
10830
|
* @returns {IndexNode}
|
|
10095
10831
|
*/
|
|
10096
10832
|
fromJSON(json: {
|
|
10097
|
-
dimensions: Node$
|
|
10833
|
+
dimensions: Node$e[];
|
|
10098
10834
|
dotNotation: boolean;
|
|
10099
10835
|
}): {
|
|
10100
|
-
dimensions: Node$
|
|
10836
|
+
dimensions: Node$e[];
|
|
10101
10837
|
dotNotation: boolean;
|
|
10102
10838
|
get type(): string;
|
|
10103
10839
|
get isIndexNode(): boolean;
|
|
@@ -10119,14 +10855,14 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10119
10855
|
* Execute a callback for each of the child nodes of this node
|
|
10120
10856
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10121
10857
|
*/
|
|
10122
|
-
forEach(callback: (child: Node$
|
|
10858
|
+
forEach(callback: (child: Node$e, path: string, parent: /*elided*/ any) => void): void;
|
|
10123
10859
|
/**
|
|
10124
10860
|
* Create a new IndexNode whose children are the results of calling
|
|
10125
10861
|
* the provided callback function for each child of the original node.
|
|
10126
10862
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10127
10863
|
* @returns {IndexNode} Returns a transformed copy of the node
|
|
10128
10864
|
*/
|
|
10129
|
-
map(callback: (child: Node$
|
|
10865
|
+
map(callback: (child: Node$e, path: string, parent: /*elided*/ any) => Node$e): /*elided*/ any;
|
|
10130
10866
|
/**
|
|
10131
10867
|
* Create a clone of this node, a shallow copy
|
|
10132
10868
|
* @return {IndexNode}
|
|
@@ -10166,8 +10902,8 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10166
10902
|
* @return {string} str
|
|
10167
10903
|
*/
|
|
10168
10904
|
_toTex(options?: StringOptions$6): string;
|
|
10169
|
-
_ifNode: (node: unknown) => Node$
|
|
10170
|
-
filter: (callback: (node: Node$
|
|
10905
|
+
_ifNode: (node: unknown) => Node$e;
|
|
10906
|
+
filter: (callback: (node: Node$e) => boolean) => Node$e[];
|
|
10171
10907
|
isSymbolNode?: boolean;
|
|
10172
10908
|
name?: string;
|
|
10173
10909
|
value?: unknown;
|
|
@@ -10177,9 +10913,9 @@ declare const createIndexNode: FactoryFunction<Dependencies$6, {
|
|
|
10177
10913
|
};
|
|
10178
10914
|
}>;
|
|
10179
10915
|
|
|
10180
|
-
interface Node$
|
|
10916
|
+
interface Node$d {
|
|
10181
10917
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$5;
|
|
10182
|
-
_ifNode: (node: unknown) => Node$
|
|
10918
|
+
_ifNode: (node: unknown) => Node$d;
|
|
10183
10919
|
toString: (options?: StringOptions$5) => string;
|
|
10184
10920
|
toHTML: (options?: StringOptions$5) => string;
|
|
10185
10921
|
toTex: (options?: StringOptions$5) => string;
|
|
@@ -10188,12 +10924,12 @@ type CompileFunction$5 = (scope: Map<string, unknown>, args: Record<string, unkn
|
|
|
10188
10924
|
interface StringOptions$5 {
|
|
10189
10925
|
[key: string]: unknown;
|
|
10190
10926
|
}
|
|
10191
|
-
interface Dependencies$
|
|
10192
|
-
Node: new (...args: unknown[]) => Node$
|
|
10927
|
+
interface Dependencies$u {
|
|
10928
|
+
Node: new (...args: unknown[]) => Node$d;
|
|
10193
10929
|
}
|
|
10194
|
-
declare const createObjectNode: FactoryFunction<Dependencies$
|
|
10195
|
-
new (properties?: Record<string, Node$
|
|
10196
|
-
properties: Record<string, Node$
|
|
10930
|
+
declare const createObjectNode: FactoryFunction<Dependencies$u, {
|
|
10931
|
+
new (properties?: Record<string, Node$d>): {
|
|
10932
|
+
properties: Record<string, Node$d>;
|
|
10197
10933
|
get type(): string;
|
|
10198
10934
|
get isObjectNode(): boolean;
|
|
10199
10935
|
/**
|
|
@@ -10214,14 +10950,14 @@ declare const createObjectNode: FactoryFunction<Dependencies$5, {
|
|
|
10214
10950
|
* Execute a callback for each of the child nodes of this node
|
|
10215
10951
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10216
10952
|
*/
|
|
10217
|
-
forEach(callback: (child: Node$
|
|
10953
|
+
forEach(callback: (child: Node$d, path: string, parent: /*elided*/ any) => void): void;
|
|
10218
10954
|
/**
|
|
10219
10955
|
* Create a new ObjectNode whose children are the results of calling
|
|
10220
10956
|
* the provided callback function for each child of the original node.
|
|
10221
10957
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10222
10958
|
* @returns {ObjectNode} Returns a transformed copy of the node
|
|
10223
10959
|
*/
|
|
10224
|
-
map(callback: (child: Node$
|
|
10960
|
+
map(callback: (child: Node$d, path: string, parent: /*elided*/ any) => Node$d): /*elided*/ any;
|
|
10225
10961
|
/**
|
|
10226
10962
|
* Create a clone of this node, a shallow copy
|
|
10227
10963
|
* @return {ObjectNode}
|
|
@@ -10252,7 +10988,7 @@ declare const createObjectNode: FactoryFunction<Dependencies$5, {
|
|
|
10252
10988
|
* @return {string} str
|
|
10253
10989
|
*/
|
|
10254
10990
|
_toTex(options?: StringOptions$5): string;
|
|
10255
|
-
_ifNode: (node: unknown) => Node$
|
|
10991
|
+
_ifNode: (node: unknown) => Node$d;
|
|
10256
10992
|
toString: (options?: StringOptions$5) => string;
|
|
10257
10993
|
toHTML: (options?: StringOptions$5) => string;
|
|
10258
10994
|
toTex: (options?: StringOptions$5) => string;
|
|
@@ -10266,9 +11002,9 @@ declare const createObjectNode: FactoryFunction<Dependencies$5, {
|
|
|
10266
11002
|
* @returns {ObjectNode}
|
|
10267
11003
|
*/
|
|
10268
11004
|
fromJSON(json: {
|
|
10269
|
-
properties: Record<string, Node$
|
|
11005
|
+
properties: Record<string, Node$d>;
|
|
10270
11006
|
}): {
|
|
10271
|
-
properties: Record<string, Node$
|
|
11007
|
+
properties: Record<string, Node$d>;
|
|
10272
11008
|
get type(): string;
|
|
10273
11009
|
get isObjectNode(): boolean;
|
|
10274
11010
|
/**
|
|
@@ -10289,14 +11025,14 @@ declare const createObjectNode: FactoryFunction<Dependencies$5, {
|
|
|
10289
11025
|
* Execute a callback for each of the child nodes of this node
|
|
10290
11026
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10291
11027
|
*/
|
|
10292
|
-
forEach(callback: (child: Node$
|
|
11028
|
+
forEach(callback: (child: Node$d, path: string, parent: /*elided*/ any) => void): void;
|
|
10293
11029
|
/**
|
|
10294
11030
|
* Create a new ObjectNode whose children are the results of calling
|
|
10295
11031
|
* the provided callback function for each child of the original node.
|
|
10296
11032
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10297
11033
|
* @returns {ObjectNode} Returns a transformed copy of the node
|
|
10298
11034
|
*/
|
|
10299
|
-
map(callback: (child: Node$
|
|
11035
|
+
map(callback: (child: Node$d, path: string, parent: /*elided*/ any) => Node$d): /*elided*/ any;
|
|
10300
11036
|
/**
|
|
10301
11037
|
* Create a clone of this node, a shallow copy
|
|
10302
11038
|
* @return {ObjectNode}
|
|
@@ -10327,18 +11063,18 @@ declare const createObjectNode: FactoryFunction<Dependencies$5, {
|
|
|
10327
11063
|
* @return {string} str
|
|
10328
11064
|
*/
|
|
10329
11065
|
_toTex(options?: StringOptions$5): string;
|
|
10330
|
-
_ifNode: (node: unknown) => Node$
|
|
11066
|
+
_ifNode: (node: unknown) => Node$d;
|
|
10331
11067
|
toString: (options?: StringOptions$5) => string;
|
|
10332
11068
|
toHTML: (options?: StringOptions$5) => string;
|
|
10333
11069
|
toTex: (options?: StringOptions$5) => string;
|
|
10334
11070
|
};
|
|
10335
11071
|
}>;
|
|
10336
11072
|
|
|
10337
|
-
interface Node$
|
|
11073
|
+
interface Node$c {
|
|
10338
11074
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$4;
|
|
10339
|
-
_ifNode: (node: unknown) => Node$
|
|
10340
|
-
filter: (callback: (node: Node$
|
|
10341
|
-
getContent: () => Node$
|
|
11075
|
+
_ifNode: (node: unknown) => Node$c;
|
|
11076
|
+
filter: (callback: (node: Node$c) => boolean) => Node$c[];
|
|
11077
|
+
getContent: () => Node$c;
|
|
10342
11078
|
getIdentifier: () => string;
|
|
10343
11079
|
toString: (options?: StringOptions$4) => string;
|
|
10344
11080
|
toHTML: (options?: StringOptions$4) => string;
|
|
@@ -10352,14 +11088,14 @@ interface StringOptions$4 {
|
|
|
10352
11088
|
implicit?: 'hide' | 'show';
|
|
10353
11089
|
[key: string]: unknown;
|
|
10354
11090
|
}
|
|
10355
|
-
interface Dependencies$
|
|
10356
|
-
Node: new (...args: unknown[]) => Node$
|
|
11091
|
+
interface Dependencies$t {
|
|
11092
|
+
Node: new (...args: unknown[]) => Node$c;
|
|
10357
11093
|
}
|
|
10358
|
-
declare const createOperatorNode: FactoryFunction<Dependencies$
|
|
10359
|
-
new (op: string, fn: string, args: Node$
|
|
11094
|
+
declare const createOperatorNode: FactoryFunction<Dependencies$t, {
|
|
11095
|
+
new (op: string, fn: string, args: Node$c[], implicit?: boolean, isPercentage?: boolean): {
|
|
10360
11096
|
op: string;
|
|
10361
11097
|
fn: string;
|
|
10362
|
-
args: Node$
|
|
11098
|
+
args: Node$c[];
|
|
10363
11099
|
implicit: boolean;
|
|
10364
11100
|
isPercentage: boolean;
|
|
10365
11101
|
get type(): string;
|
|
@@ -10382,14 +11118,14 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10382
11118
|
* Execute a callback for each of the child nodes of this node
|
|
10383
11119
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10384
11120
|
*/
|
|
10385
|
-
forEach(callback: (child: Node$
|
|
11121
|
+
forEach(callback: (child: Node$c, path: string, parent: /*elided*/ any) => void): void;
|
|
10386
11122
|
/**
|
|
10387
11123
|
* Create a new OperatorNode whose children are the results of calling
|
|
10388
11124
|
* the provided callback function for each child of the original node.
|
|
10389
11125
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10390
11126
|
* @returns {OperatorNode} Returns a transformed copy of the node
|
|
10391
11127
|
*/
|
|
10392
|
-
map(callback: (child: Node$
|
|
11128
|
+
map(callback: (child: Node$c, path: string, parent: /*elided*/ any) => Node$c): /*elided*/ any;
|
|
10393
11129
|
/**
|
|
10394
11130
|
* Create a clone of this node, a shallow copy
|
|
10395
11131
|
* @return {OperatorNode}
|
|
@@ -10438,9 +11174,9 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10438
11174
|
* @return {string}
|
|
10439
11175
|
*/
|
|
10440
11176
|
getIdentifier(): string;
|
|
10441
|
-
_ifNode: (node: unknown) => Node$
|
|
10442
|
-
filter: (callback: (node: Node$
|
|
10443
|
-
getContent: () => Node$
|
|
11177
|
+
_ifNode: (node: unknown) => Node$c;
|
|
11178
|
+
filter: (callback: (node: Node$c) => boolean) => Node$c[];
|
|
11179
|
+
getContent: () => Node$c;
|
|
10444
11180
|
toString: (options?: StringOptions$4) => string;
|
|
10445
11181
|
toHTML: (options?: StringOptions$4) => string;
|
|
10446
11182
|
toTex: (options?: StringOptions$4) => string;
|
|
@@ -10463,13 +11199,13 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10463
11199
|
fromJSON(json: {
|
|
10464
11200
|
op: string;
|
|
10465
11201
|
fn: string;
|
|
10466
|
-
args: Node$
|
|
11202
|
+
args: Node$c[];
|
|
10467
11203
|
implicit: boolean;
|
|
10468
11204
|
isPercentage: boolean;
|
|
10469
11205
|
}): {
|
|
10470
11206
|
op: string;
|
|
10471
11207
|
fn: string;
|
|
10472
|
-
args: Node$
|
|
11208
|
+
args: Node$c[];
|
|
10473
11209
|
implicit: boolean;
|
|
10474
11210
|
isPercentage: boolean;
|
|
10475
11211
|
get type(): string;
|
|
@@ -10492,14 +11228,14 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10492
11228
|
* Execute a callback for each of the child nodes of this node
|
|
10493
11229
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10494
11230
|
*/
|
|
10495
|
-
forEach(callback: (child: Node$
|
|
11231
|
+
forEach(callback: (child: Node$c, path: string, parent: /*elided*/ any) => void): void;
|
|
10496
11232
|
/**
|
|
10497
11233
|
* Create a new OperatorNode whose children are the results of calling
|
|
10498
11234
|
* the provided callback function for each child of the original node.
|
|
10499
11235
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10500
11236
|
* @returns {OperatorNode} Returns a transformed copy of the node
|
|
10501
11237
|
*/
|
|
10502
|
-
map(callback: (child: Node$
|
|
11238
|
+
map(callback: (child: Node$c, path: string, parent: /*elided*/ any) => Node$c): /*elided*/ any;
|
|
10503
11239
|
/**
|
|
10504
11240
|
* Create a clone of this node, a shallow copy
|
|
10505
11241
|
* @return {OperatorNode}
|
|
@@ -10548,9 +11284,9 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10548
11284
|
* @return {string}
|
|
10549
11285
|
*/
|
|
10550
11286
|
getIdentifier(): string;
|
|
10551
|
-
_ifNode: (node: unknown) => Node$
|
|
10552
|
-
filter: (callback: (node: Node$
|
|
10553
|
-
getContent: () => Node$
|
|
11287
|
+
_ifNode: (node: unknown) => Node$c;
|
|
11288
|
+
filter: (callback: (node: Node$c) => boolean) => Node$c[];
|
|
11289
|
+
getContent: () => Node$c;
|
|
10554
11290
|
toString: (options?: StringOptions$4) => string;
|
|
10555
11291
|
toHTML: (options?: StringOptions$4) => string;
|
|
10556
11292
|
toTex: (options?: StringOptions$4) => string;
|
|
@@ -10558,9 +11294,9 @@ declare const createOperatorNode: FactoryFunction<Dependencies$4, {
|
|
|
10558
11294
|
};
|
|
10559
11295
|
}>;
|
|
10560
11296
|
|
|
10561
|
-
interface Node$
|
|
11297
|
+
interface Node$b {
|
|
10562
11298
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$3;
|
|
10563
|
-
getContent: () => Node$
|
|
11299
|
+
getContent: () => Node$b;
|
|
10564
11300
|
toString: (options?: StringOptions$3) => string;
|
|
10565
11301
|
toHTML: (options?: StringOptions$3) => string;
|
|
10566
11302
|
toTex: (options?: StringOptions$3) => string;
|
|
@@ -10571,12 +11307,12 @@ interface StringOptions$3 {
|
|
|
10571
11307
|
parenthesis?: 'keep' | 'auto' | 'all';
|
|
10572
11308
|
[key: string]: unknown;
|
|
10573
11309
|
}
|
|
10574
|
-
interface Dependencies$
|
|
10575
|
-
Node: new (...args: unknown[]) => Node$
|
|
11310
|
+
interface Dependencies$s {
|
|
11311
|
+
Node: new (...args: unknown[]) => Node$b;
|
|
10576
11312
|
}
|
|
10577
|
-
declare const createParenthesisNode: FactoryFunction<Dependencies$
|
|
10578
|
-
new (content: Node$
|
|
10579
|
-
content: Node$
|
|
11313
|
+
declare const createParenthesisNode: FactoryFunction<Dependencies$s, {
|
|
11314
|
+
new (content: Node$b): {
|
|
11315
|
+
content: Node$b;
|
|
10580
11316
|
get type(): string;
|
|
10581
11317
|
get isParenthesisNode(): boolean;
|
|
10582
11318
|
/**
|
|
@@ -10598,19 +11334,19 @@ declare const createParenthesisNode: FactoryFunction<Dependencies$3, {
|
|
|
10598
11334
|
* @return {Node} content
|
|
10599
11335
|
* @override
|
|
10600
11336
|
**/
|
|
10601
|
-
getContent(): Node$
|
|
11337
|
+
getContent(): Node$b;
|
|
10602
11338
|
/**
|
|
10603
11339
|
* Execute a callback for each of the child nodes of this node
|
|
10604
11340
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10605
11341
|
*/
|
|
10606
|
-
forEach(callback: (child: Node$
|
|
11342
|
+
forEach(callback: (child: Node$b, path: string, parent: /*elided*/ any) => void): void;
|
|
10607
11343
|
/**
|
|
10608
11344
|
* Create a new ParenthesisNode whose child is the result of calling
|
|
10609
11345
|
* the provided callback function on the child of this node.
|
|
10610
11346
|
* @param {function(child: Node, path: string, parent: Node) : Node} callback
|
|
10611
11347
|
* @returns {ParenthesisNode} Returns a clone of the node
|
|
10612
11348
|
*/
|
|
10613
|
-
map(callback: (child: Node$
|
|
11349
|
+
map(callback: (child: Node$b, path: string, parent: /*elided*/ any) => Node$b): /*elided*/ any;
|
|
10614
11350
|
/**
|
|
10615
11351
|
* Create a clone of this node, a shallow copy
|
|
10616
11352
|
* @return {ParenthesisNode}
|
|
@@ -10657,9 +11393,9 @@ declare const createParenthesisNode: FactoryFunction<Dependencies$3, {
|
|
|
10657
11393
|
* @returns {ParenthesisNode}
|
|
10658
11394
|
*/
|
|
10659
11395
|
fromJSON(json: {
|
|
10660
|
-
content: Node$
|
|
11396
|
+
content: Node$b;
|
|
10661
11397
|
}): {
|
|
10662
|
-
content: Node$
|
|
11398
|
+
content: Node$b;
|
|
10663
11399
|
get type(): string;
|
|
10664
11400
|
get isParenthesisNode(): boolean;
|
|
10665
11401
|
/**
|
|
@@ -10681,19 +11417,19 @@ declare const createParenthesisNode: FactoryFunction<Dependencies$3, {
|
|
|
10681
11417
|
* @return {Node} content
|
|
10682
11418
|
* @override
|
|
10683
11419
|
**/
|
|
10684
|
-
getContent(): Node$
|
|
11420
|
+
getContent(): Node$b;
|
|
10685
11421
|
/**
|
|
10686
11422
|
* Execute a callback for each of the child nodes of this node
|
|
10687
11423
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10688
11424
|
*/
|
|
10689
|
-
forEach(callback: (child: Node$
|
|
11425
|
+
forEach(callback: (child: Node$b, path: string, parent: /*elided*/ any) => void): void;
|
|
10690
11426
|
/**
|
|
10691
11427
|
* Create a new ParenthesisNode whose child is the result of calling
|
|
10692
11428
|
* the provided callback function on the child of this node.
|
|
10693
11429
|
* @param {function(child: Node, path: string, parent: Node) : Node} callback
|
|
10694
11430
|
* @returns {ParenthesisNode} Returns a clone of the node
|
|
10695
11431
|
*/
|
|
10696
|
-
map(callback: (child: Node$
|
|
11432
|
+
map(callback: (child: Node$b, path: string, parent: /*elided*/ any) => Node$b): /*elided*/ any;
|
|
10697
11433
|
/**
|
|
10698
11434
|
* Create a clone of this node, a shallow copy
|
|
10699
11435
|
* @return {ParenthesisNode}
|
|
@@ -10733,10 +11469,10 @@ declare const createParenthesisNode: FactoryFunction<Dependencies$3, {
|
|
|
10733
11469
|
};
|
|
10734
11470
|
}>;
|
|
10735
11471
|
|
|
10736
|
-
interface Node$
|
|
11472
|
+
interface Node$a {
|
|
10737
11473
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$2;
|
|
10738
|
-
_ifNode: (node: unknown) => Node$
|
|
10739
|
-
filter: (callback: (node: Node$
|
|
11474
|
+
_ifNode: (node: unknown) => Node$a;
|
|
11475
|
+
filter: (callback: (node: Node$a) => boolean) => Node$a[];
|
|
10740
11476
|
toString: (options?: StringOptions$2) => string;
|
|
10741
11477
|
toHTML: (options?: StringOptions$2) => string;
|
|
10742
11478
|
toTex: (options?: StringOptions$2) => string;
|
|
@@ -10749,14 +11485,14 @@ interface StringOptions$2 {
|
|
|
10749
11485
|
implicit?: 'hide' | 'show';
|
|
10750
11486
|
[key: string]: unknown;
|
|
10751
11487
|
}
|
|
10752
|
-
interface Dependencies$
|
|
10753
|
-
Node: new (...args: unknown[]) => Node$
|
|
11488
|
+
interface Dependencies$r {
|
|
11489
|
+
Node: new (...args: unknown[]) => Node$a;
|
|
10754
11490
|
}
|
|
10755
|
-
declare const createRangeNode: FactoryFunction<Dependencies$
|
|
10756
|
-
new (start: Node$
|
|
10757
|
-
start: Node$
|
|
10758
|
-
end: Node$
|
|
10759
|
-
step: Node$
|
|
11491
|
+
declare const createRangeNode: FactoryFunction<Dependencies$r, {
|
|
11492
|
+
new (start: Node$a, end: Node$a, step?: Node$a): {
|
|
11493
|
+
start: Node$a;
|
|
11494
|
+
end: Node$a;
|
|
11495
|
+
step: Node$a | null;
|
|
10760
11496
|
get type(): string;
|
|
10761
11497
|
get isRangeNode(): boolean;
|
|
10762
11498
|
/**
|
|
@@ -10783,14 +11519,14 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10783
11519
|
* Execute a callback for each of the child nodes of this node
|
|
10784
11520
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10785
11521
|
*/
|
|
10786
|
-
forEach(callback: (child: Node$
|
|
11522
|
+
forEach(callback: (child: Node$a, path: string, parent: /*elided*/ any) => void): void;
|
|
10787
11523
|
/**
|
|
10788
11524
|
* Create a new RangeNode whose children are the results of calling
|
|
10789
11525
|
* the provided callback function for each child of the original node.
|
|
10790
11526
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10791
11527
|
* @returns {RangeNode} Returns a transformed copy of the node
|
|
10792
11528
|
*/
|
|
10793
|
-
map(callback: (child: Node$
|
|
11529
|
+
map(callback: (child: Node$a, path: string, parent: /*elided*/ any) => Node$a): /*elided*/ any;
|
|
10794
11530
|
/**
|
|
10795
11531
|
* Create a clone of this node, a shallow copy
|
|
10796
11532
|
* @return {RangeNode}
|
|
@@ -10819,8 +11555,8 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10819
11555
|
* @return {string} str
|
|
10820
11556
|
*/
|
|
10821
11557
|
_toTex(options?: StringOptions$2): string;
|
|
10822
|
-
_ifNode: (node: unknown) => Node$
|
|
10823
|
-
filter: (callback: (node: Node$
|
|
11558
|
+
_ifNode: (node: unknown) => Node$a;
|
|
11559
|
+
filter: (callback: (node: Node$a) => boolean) => Node$a[];
|
|
10824
11560
|
toString: (options?: StringOptions$2) => string;
|
|
10825
11561
|
toHTML: (options?: StringOptions$2) => string;
|
|
10826
11562
|
toTex: (options?: StringOptions$2) => string;
|
|
@@ -10837,13 +11573,13 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10837
11573
|
* @returns {RangeNode}
|
|
10838
11574
|
*/
|
|
10839
11575
|
fromJSON(json: {
|
|
10840
|
-
start: Node$
|
|
10841
|
-
end: Node$
|
|
10842
|
-
step?: Node$
|
|
11576
|
+
start: Node$a;
|
|
11577
|
+
end: Node$a;
|
|
11578
|
+
step?: Node$a;
|
|
10843
11579
|
}): {
|
|
10844
|
-
start: Node$
|
|
10845
|
-
end: Node$
|
|
10846
|
-
step: Node$
|
|
11580
|
+
start: Node$a;
|
|
11581
|
+
end: Node$a;
|
|
11582
|
+
step: Node$a | null;
|
|
10847
11583
|
get type(): string;
|
|
10848
11584
|
get isRangeNode(): boolean;
|
|
10849
11585
|
/**
|
|
@@ -10870,14 +11606,14 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10870
11606
|
* Execute a callback for each of the child nodes of this node
|
|
10871
11607
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10872
11608
|
*/
|
|
10873
|
-
forEach(callback: (child: Node$
|
|
11609
|
+
forEach(callback: (child: Node$a, path: string, parent: /*elided*/ any) => void): void;
|
|
10874
11610
|
/**
|
|
10875
11611
|
* Create a new RangeNode whose children are the results of calling
|
|
10876
11612
|
* the provided callback function for each child of the original node.
|
|
10877
11613
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10878
11614
|
* @returns {RangeNode} Returns a transformed copy of the node
|
|
10879
11615
|
*/
|
|
10880
|
-
map(callback: (child: Node$
|
|
11616
|
+
map(callback: (child: Node$a, path: string, parent: /*elided*/ any) => Node$a): /*elided*/ any;
|
|
10881
11617
|
/**
|
|
10882
11618
|
* Create a clone of this node, a shallow copy
|
|
10883
11619
|
* @return {RangeNode}
|
|
@@ -10906,8 +11642,8 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10906
11642
|
* @return {string} str
|
|
10907
11643
|
*/
|
|
10908
11644
|
_toTex(options?: StringOptions$2): string;
|
|
10909
|
-
_ifNode: (node: unknown) => Node$
|
|
10910
|
-
filter: (callback: (node: Node$
|
|
11645
|
+
_ifNode: (node: unknown) => Node$a;
|
|
11646
|
+
filter: (callback: (node: Node$a) => boolean) => Node$a[];
|
|
10911
11647
|
toString: (options?: StringOptions$2) => string;
|
|
10912
11648
|
toHTML: (options?: StringOptions$2) => string;
|
|
10913
11649
|
toTex: (options?: StringOptions$2) => string;
|
|
@@ -10916,9 +11652,9 @@ declare const createRangeNode: FactoryFunction<Dependencies$2, {
|
|
|
10916
11652
|
};
|
|
10917
11653
|
}>;
|
|
10918
11654
|
|
|
10919
|
-
interface Node$
|
|
11655
|
+
interface Node$9 {
|
|
10920
11656
|
_compile: (math: Record<string, unknown>, argNames: Record<string, boolean>) => CompileFunction$1;
|
|
10921
|
-
_ifNode: (node: unknown) => Node$
|
|
11657
|
+
_ifNode: (node: unknown) => Node$9;
|
|
10922
11658
|
toString: (options?: StringOptions$1) => string;
|
|
10923
11659
|
toHTML: (options?: StringOptions$1) => string;
|
|
10924
11660
|
toTex: (options?: StringOptions$1) => string;
|
|
@@ -10930,13 +11666,13 @@ interface StringOptions$1 {
|
|
|
10930
11666
|
implicit?: 'hide' | 'show';
|
|
10931
11667
|
[key: string]: unknown;
|
|
10932
11668
|
}
|
|
10933
|
-
interface Dependencies$
|
|
10934
|
-
Node: new (...args: unknown[]) => Node$
|
|
11669
|
+
interface Dependencies$q {
|
|
11670
|
+
Node: new (...args: unknown[]) => Node$9;
|
|
10935
11671
|
}
|
|
10936
|
-
declare const createRelationalNode: FactoryFunction<Dependencies$
|
|
10937
|
-
new (conditionals: string[], params: Node$
|
|
11672
|
+
declare const createRelationalNode: FactoryFunction<Dependencies$q, {
|
|
11673
|
+
new (conditionals: string[], params: Node$9[]): {
|
|
10938
11674
|
conditionals: string[];
|
|
10939
|
-
params: Node$
|
|
11675
|
+
params: Node$9[];
|
|
10940
11676
|
get type(): string;
|
|
10941
11677
|
get isRelationalNode(): boolean;
|
|
10942
11678
|
/**
|
|
@@ -10957,14 +11693,14 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
10957
11693
|
* Execute a callback for each of the child nodes of this node
|
|
10958
11694
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
10959
11695
|
*/
|
|
10960
|
-
forEach(callback: (child: Node$
|
|
11696
|
+
forEach(callback: (child: Node$9, path: string, parent: /*elided*/ any) => void): void;
|
|
10961
11697
|
/**
|
|
10962
11698
|
* Create a new RelationalNode whose children are the results of calling
|
|
10963
11699
|
* the provided callback function for each child of the original node.
|
|
10964
11700
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
10965
11701
|
* @returns {RelationalNode} Returns a transformed copy of the node
|
|
10966
11702
|
*/
|
|
10967
|
-
map(callback: (child: Node$
|
|
11703
|
+
map(callback: (child: Node$9, path: string, parent: /*elided*/ any) => Node$9): /*elided*/ any;
|
|
10968
11704
|
/**
|
|
10969
11705
|
* Create a clone of this node, a shallow copy
|
|
10970
11706
|
* @return {RelationalNode}
|
|
@@ -10994,7 +11730,7 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
10994
11730
|
*/
|
|
10995
11731
|
_toMathML(): string;
|
|
10996
11732
|
_toTex(options?: StringOptions$1): string;
|
|
10997
|
-
_ifNode: (node: unknown) => Node$
|
|
11733
|
+
_ifNode: (node: unknown) => Node$9;
|
|
10998
11734
|
toString: (options?: StringOptions$1) => string;
|
|
10999
11735
|
toHTML: (options?: StringOptions$1) => string;
|
|
11000
11736
|
toTex: (options?: StringOptions$1) => string;
|
|
@@ -11011,10 +11747,10 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
11011
11747
|
*/
|
|
11012
11748
|
fromJSON(json: {
|
|
11013
11749
|
conditionals: string[];
|
|
11014
|
-
params: Node$
|
|
11750
|
+
params: Node$9[];
|
|
11015
11751
|
}): {
|
|
11016
11752
|
conditionals: string[];
|
|
11017
|
-
params: Node$
|
|
11753
|
+
params: Node$9[];
|
|
11018
11754
|
get type(): string;
|
|
11019
11755
|
get isRelationalNode(): boolean;
|
|
11020
11756
|
/**
|
|
@@ -11035,14 +11771,14 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
11035
11771
|
* Execute a callback for each of the child nodes of this node
|
|
11036
11772
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
11037
11773
|
*/
|
|
11038
|
-
forEach(callback: (child: Node$
|
|
11774
|
+
forEach(callback: (child: Node$9, path: string, parent: /*elided*/ any) => void): void;
|
|
11039
11775
|
/**
|
|
11040
11776
|
* Create a new RelationalNode whose children are the results of calling
|
|
11041
11777
|
* the provided callback function for each child of the original node.
|
|
11042
11778
|
* @param {function(child: Node, path: string, parent: Node): Node} callback
|
|
11043
11779
|
* @returns {RelationalNode} Returns a transformed copy of the node
|
|
11044
11780
|
*/
|
|
11045
|
-
map(callback: (child: Node$
|
|
11781
|
+
map(callback: (child: Node$9, path: string, parent: /*elided*/ any) => Node$9): /*elided*/ any;
|
|
11046
11782
|
/**
|
|
11047
11783
|
* Create a clone of this node, a shallow copy
|
|
11048
11784
|
* @return {RelationalNode}
|
|
@@ -11072,7 +11808,7 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
11072
11808
|
*/
|
|
11073
11809
|
_toMathML(): string;
|
|
11074
11810
|
_toTex(options?: StringOptions$1): string;
|
|
11075
|
-
_ifNode: (node: unknown) => Node$
|
|
11811
|
+
_ifNode: (node: unknown) => Node$9;
|
|
11076
11812
|
toString: (options?: StringOptions$1) => string;
|
|
11077
11813
|
toHTML: (options?: StringOptions$1) => string;
|
|
11078
11814
|
toTex: (options?: StringOptions$1) => string;
|
|
@@ -11080,8 +11816,8 @@ declare const createRelationalNode: FactoryFunction<Dependencies$1, {
|
|
|
11080
11816
|
};
|
|
11081
11817
|
}>;
|
|
11082
11818
|
|
|
11083
|
-
interface Node {
|
|
11084
|
-
clone: () => Node;
|
|
11819
|
+
interface Node$8 {
|
|
11820
|
+
clone: () => Node$8;
|
|
11085
11821
|
}
|
|
11086
11822
|
type CompileFunction = (scope: Map<string, unknown>, args: Record<string, unknown>, context: unknown) => unknown;
|
|
11087
11823
|
interface StringOptions {
|
|
@@ -11091,12 +11827,12 @@ interface UnitConstructor {
|
|
|
11091
11827
|
new (value: unknown, name: string): unknown;
|
|
11092
11828
|
isValuelessUnit: (name: string) => boolean;
|
|
11093
11829
|
}
|
|
11094
|
-
interface Dependencies {
|
|
11830
|
+
interface Dependencies$p {
|
|
11095
11831
|
math: Record<string, unknown>;
|
|
11096
11832
|
Unit?: UnitConstructor;
|
|
11097
|
-
Node: new (...args: unknown[]) => Node;
|
|
11833
|
+
Node: new (...args: unknown[]) => Node$8;
|
|
11098
11834
|
}
|
|
11099
|
-
declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
11835
|
+
declare const createSymbolNode: FactoryFunction<Dependencies$p, {
|
|
11100
11836
|
new (name: string): {
|
|
11101
11837
|
name: string;
|
|
11102
11838
|
get type(): string;
|
|
@@ -11119,14 +11855,14 @@ declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
|
11119
11855
|
* Execute a callback for each of the child nodes of this node
|
|
11120
11856
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
11121
11857
|
*/
|
|
11122
|
-
forEach(_callback: (child: Node, path: string, parent: /*elided*/ any) => void): void;
|
|
11858
|
+
forEach(_callback: (child: Node$8, path: string, parent: /*elided*/ any) => void): void;
|
|
11123
11859
|
/**
|
|
11124
11860
|
* Create a new SymbolNode with children produced by the given callback.
|
|
11125
11861
|
* Trivial since a SymbolNode has no children
|
|
11126
11862
|
* @param {function(child: Node, path: string, parent: Node) : Node} callback
|
|
11127
11863
|
* @returns {SymbolNode} Returns a clone of the node
|
|
11128
11864
|
*/
|
|
11129
|
-
map(_callback: (child: Node, path: string, parent: /*elided*/ any) => Node): /*elided*/ any;
|
|
11865
|
+
map(_callback: (child: Node$8, path: string, parent: /*elided*/ any) => Node$8): /*elided*/ any;
|
|
11130
11866
|
/**
|
|
11131
11867
|
* Create a clone of this node, a shallow copy
|
|
11132
11868
|
* @return {SymbolNode}
|
|
@@ -11196,14 +11932,14 @@ declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
|
11196
11932
|
* Execute a callback for each of the child nodes of this node
|
|
11197
11933
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
|
11198
11934
|
*/
|
|
11199
|
-
forEach(_callback: (child: Node, path: string, parent: /*elided*/ any) => void): void;
|
|
11935
|
+
forEach(_callback: (child: Node$8, path: string, parent: /*elided*/ any) => void): void;
|
|
11200
11936
|
/**
|
|
11201
11937
|
* Create a new SymbolNode with children produced by the given callback.
|
|
11202
11938
|
* Trivial since a SymbolNode has no children
|
|
11203
11939
|
* @param {function(child: Node, path: string, parent: Node) : Node} callback
|
|
11204
11940
|
* @returns {SymbolNode} Returns a clone of the node
|
|
11205
11941
|
*/
|
|
11206
|
-
map(_callback: (child: Node, path: string, parent: /*elided*/ any) => Node): /*elided*/ any;
|
|
11942
|
+
map(_callback: (child: Node$8, path: string, parent: /*elided*/ any) => Node$8): /*elided*/ any;
|
|
11207
11943
|
/**
|
|
11208
11944
|
* Create a clone of this node, a shallow copy
|
|
11209
11945
|
* @return {SymbolNode}
|
|
@@ -11239,4 +11975,333 @@ declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
|
11239
11975
|
};
|
|
11240
11976
|
}>;
|
|
11241
11977
|
|
|
11242
|
-
|
|
11978
|
+
interface Node$7 {
|
|
11979
|
+
compile(): CompiledExpression$7;
|
|
11980
|
+
}
|
|
11981
|
+
interface CompiledExpression$7 {
|
|
11982
|
+
evaluate(scope: unknown): unknown;
|
|
11983
|
+
}
|
|
11984
|
+
interface TransformFunction$7 {
|
|
11985
|
+
(args: Node$7[], math: unknown, scope: unknown): unknown;
|
|
11986
|
+
rawArgs?: boolean;
|
|
11987
|
+
}
|
|
11988
|
+
interface Dependencies$o {
|
|
11989
|
+
and: (...args: unknown[]) => unknown;
|
|
11990
|
+
}
|
|
11991
|
+
declare const createAndTransform: FactoryFunction<Dependencies$o, TransformFunction$7>;
|
|
11992
|
+
|
|
11993
|
+
interface Node$6 {
|
|
11994
|
+
compile(): CompiledExpression$6;
|
|
11995
|
+
}
|
|
11996
|
+
interface CompiledExpression$6 {
|
|
11997
|
+
evaluate(scope: unknown): unknown;
|
|
11998
|
+
}
|
|
11999
|
+
interface TransformFunction$6 {
|
|
12000
|
+
(args: Node$6[], math: unknown, scope: unknown): unknown;
|
|
12001
|
+
rawArgs?: boolean;
|
|
12002
|
+
}
|
|
12003
|
+
interface Dependencies$n {
|
|
12004
|
+
bitAnd: (...args: unknown[]) => unknown;
|
|
12005
|
+
}
|
|
12006
|
+
declare const createBitAndTransform: FactoryFunction<Dependencies$n, TransformFunction$6>;
|
|
12007
|
+
|
|
12008
|
+
interface Node$5 {
|
|
12009
|
+
compile(): CompiledExpression$5;
|
|
12010
|
+
}
|
|
12011
|
+
interface CompiledExpression$5 {
|
|
12012
|
+
evaluate(scope: unknown): unknown;
|
|
12013
|
+
}
|
|
12014
|
+
interface TransformFunction$5 {
|
|
12015
|
+
(args: Node$5[], math: unknown, scope: unknown): unknown;
|
|
12016
|
+
rawArgs?: boolean;
|
|
12017
|
+
}
|
|
12018
|
+
interface Dependencies$m {
|
|
12019
|
+
bitOr: (...args: unknown[]) => unknown;
|
|
12020
|
+
}
|
|
12021
|
+
declare const createBitOrTransform: FactoryFunction<Dependencies$m, TransformFunction$5>;
|
|
12022
|
+
|
|
12023
|
+
interface TypedFunction$i<T = unknown> {
|
|
12024
|
+
(...args: unknown[]): T;
|
|
12025
|
+
}
|
|
12026
|
+
interface Dependencies$l {
|
|
12027
|
+
column: (...args: unknown[]) => unknown;
|
|
12028
|
+
typed: TypedFunction$i;
|
|
12029
|
+
}
|
|
12030
|
+
/**
|
|
12031
|
+
* Attach a transform function to matrix.column
|
|
12032
|
+
* Adds a property transform containing the transform function.
|
|
12033
|
+
*
|
|
12034
|
+
* This transform changed the last `index` parameter of function column
|
|
12035
|
+
* from zero-based to one-based
|
|
12036
|
+
*/
|
|
12037
|
+
declare const createColumnTransform: FactoryFunction<Dependencies$l, unknown>;
|
|
12038
|
+
|
|
12039
|
+
interface TypedFunction$h<T = unknown> {
|
|
12040
|
+
(...args: unknown[]): T;
|
|
12041
|
+
find(func: unknown, signature: string[]): TypedFunction$h<T>;
|
|
12042
|
+
}
|
|
12043
|
+
interface Dependencies$k {
|
|
12044
|
+
concat: (...args: unknown[]) => unknown;
|
|
12045
|
+
typed: TypedFunction$h;
|
|
12046
|
+
}
|
|
12047
|
+
declare const createConcatTransform: FactoryFunction<Dependencies$k, unknown>;
|
|
12048
|
+
|
|
12049
|
+
interface TypedFunction$g<T = unknown> {
|
|
12050
|
+
(...args: unknown[]): T;
|
|
12051
|
+
}
|
|
12052
|
+
interface Dependencies$j {
|
|
12053
|
+
cumsum: (...args: unknown[]) => unknown;
|
|
12054
|
+
typed: TypedFunction$g;
|
|
12055
|
+
}
|
|
12056
|
+
declare const createCumSumTransform: FactoryFunction<Dependencies$j, unknown>;
|
|
12057
|
+
|
|
12058
|
+
interface TypedFunction$f<T = unknown> {
|
|
12059
|
+
(...args: unknown[]): T;
|
|
12060
|
+
}
|
|
12061
|
+
interface Dependencies$i {
|
|
12062
|
+
diff: (...args: unknown[]) => unknown;
|
|
12063
|
+
typed: TypedFunction$f;
|
|
12064
|
+
}
|
|
12065
|
+
declare const createDiffTransform: FactoryFunction<Dependencies$i, unknown>;
|
|
12066
|
+
|
|
12067
|
+
interface TypedFunction$e<T = unknown> {
|
|
12068
|
+
(...args: unknown[]): T;
|
|
12069
|
+
}
|
|
12070
|
+
interface Node$4 {
|
|
12071
|
+
compile(): CompiledExpression$4;
|
|
12072
|
+
}
|
|
12073
|
+
interface CompiledExpression$4 {
|
|
12074
|
+
evaluate(scope: unknown): unknown;
|
|
12075
|
+
}
|
|
12076
|
+
interface TransformFunction$4 {
|
|
12077
|
+
(args: Node$4[], math: unknown, scope: unknown): unknown;
|
|
12078
|
+
rawArgs?: boolean;
|
|
12079
|
+
}
|
|
12080
|
+
interface Dependencies$h {
|
|
12081
|
+
filter: (...args: unknown[]) => unknown;
|
|
12082
|
+
typed: TypedFunction$e;
|
|
12083
|
+
}
|
|
12084
|
+
declare const createFilterTransform: FactoryFunction<Dependencies$h, TransformFunction$4>;
|
|
12085
|
+
|
|
12086
|
+
interface TypedFunction$d<T = unknown> {
|
|
12087
|
+
(...args: unknown[]): T;
|
|
12088
|
+
}
|
|
12089
|
+
interface Node$3 {
|
|
12090
|
+
compile(): CompiledExpression$3;
|
|
12091
|
+
}
|
|
12092
|
+
interface CompiledExpression$3 {
|
|
12093
|
+
evaluate(scope: unknown): unknown;
|
|
12094
|
+
}
|
|
12095
|
+
interface TransformFunction$3 {
|
|
12096
|
+
(args: Node$3[], math: unknown, scope: unknown): unknown;
|
|
12097
|
+
rawArgs?: boolean;
|
|
12098
|
+
}
|
|
12099
|
+
interface Dependencies$g {
|
|
12100
|
+
forEach: (...args: unknown[]) => unknown;
|
|
12101
|
+
typed: TypedFunction$d;
|
|
12102
|
+
}
|
|
12103
|
+
declare const createForEachTransform: FactoryFunction<Dependencies$g, TransformFunction$3>;
|
|
12104
|
+
|
|
12105
|
+
interface IndexClass {
|
|
12106
|
+
new (...args: unknown[]): unknown;
|
|
12107
|
+
apply(instance: unknown, args: unknown[]): void;
|
|
12108
|
+
}
|
|
12109
|
+
interface Dependencies$f {
|
|
12110
|
+
Index: IndexClass;
|
|
12111
|
+
getMatrixDataType: (matrix: unknown) => string;
|
|
12112
|
+
}
|
|
12113
|
+
declare const createIndexTransform: FactoryFunction<Dependencies$f, (...args: unknown[]) => unknown>;
|
|
12114
|
+
|
|
12115
|
+
interface TypedFunction$c<T = unknown> {
|
|
12116
|
+
(...args: unknown[]): T;
|
|
12117
|
+
}
|
|
12118
|
+
interface Node$2 {
|
|
12119
|
+
compile(): CompiledExpression$2;
|
|
12120
|
+
}
|
|
12121
|
+
interface CompiledExpression$2 {
|
|
12122
|
+
evaluate(scope: unknown): unknown;
|
|
12123
|
+
}
|
|
12124
|
+
interface TransformFunction$2 {
|
|
12125
|
+
(args: Node$2[], math: unknown, scope: unknown): unknown;
|
|
12126
|
+
rawArgs?: boolean;
|
|
12127
|
+
}
|
|
12128
|
+
interface Dependencies$e {
|
|
12129
|
+
map: (...args: unknown[]) => unknown;
|
|
12130
|
+
typed: TypedFunction$c;
|
|
12131
|
+
}
|
|
12132
|
+
declare const createMapTransform: FactoryFunction<Dependencies$e, TransformFunction$2>;
|
|
12133
|
+
|
|
12134
|
+
interface TypedFunction$b<T = unknown> {
|
|
12135
|
+
(...args: unknown[]): T;
|
|
12136
|
+
}
|
|
12137
|
+
interface Dependencies$d {
|
|
12138
|
+
mapSlices: (...args: unknown[]) => unknown;
|
|
12139
|
+
typed: TypedFunction$b;
|
|
12140
|
+
}
|
|
12141
|
+
/**
|
|
12142
|
+
* Attach a transform function to math.mapSlices
|
|
12143
|
+
* Adds a property transform containing the transform function.
|
|
12144
|
+
*
|
|
12145
|
+
* This transform changed the last `dim` parameter of function mapSlices
|
|
12146
|
+
* from one-based to zero based
|
|
12147
|
+
*/
|
|
12148
|
+
declare const createMapSlicesTransform: FactoryFunction<Dependencies$d, unknown>;
|
|
12149
|
+
|
|
12150
|
+
interface TypedFunction$a<T = unknown> {
|
|
12151
|
+
(...args: unknown[]): T;
|
|
12152
|
+
}
|
|
12153
|
+
interface Dependencies$c {
|
|
12154
|
+
max: (...args: unknown[]) => unknown;
|
|
12155
|
+
typed: TypedFunction$a;
|
|
12156
|
+
}
|
|
12157
|
+
declare const createMaxTransform: FactoryFunction<Dependencies$c, unknown>;
|
|
12158
|
+
|
|
12159
|
+
interface TypedFunction$9<T = unknown> {
|
|
12160
|
+
(...args: unknown[]): T;
|
|
12161
|
+
}
|
|
12162
|
+
interface Dependencies$b {
|
|
12163
|
+
mean: (...args: unknown[]) => unknown;
|
|
12164
|
+
typed: TypedFunction$9;
|
|
12165
|
+
}
|
|
12166
|
+
declare const createMeanTransform: FactoryFunction<Dependencies$b, unknown>;
|
|
12167
|
+
|
|
12168
|
+
interface TypedFunction$8<T = unknown> {
|
|
12169
|
+
(...args: unknown[]): T;
|
|
12170
|
+
}
|
|
12171
|
+
interface Dependencies$a {
|
|
12172
|
+
min: (...args: unknown[]) => unknown;
|
|
12173
|
+
typed: TypedFunction$8;
|
|
12174
|
+
}
|
|
12175
|
+
declare const createMinTransform: FactoryFunction<Dependencies$a, unknown>;
|
|
12176
|
+
|
|
12177
|
+
interface Node$1 {
|
|
12178
|
+
compile(): CompiledExpression$1;
|
|
12179
|
+
}
|
|
12180
|
+
interface CompiledExpression$1 {
|
|
12181
|
+
evaluate(scope: unknown): unknown;
|
|
12182
|
+
}
|
|
12183
|
+
interface TransformFunction$1 {
|
|
12184
|
+
(args: Node$1[], math: unknown, scope: unknown): unknown;
|
|
12185
|
+
rawArgs?: boolean;
|
|
12186
|
+
}
|
|
12187
|
+
interface Dependencies$9 {
|
|
12188
|
+
nullish: (...args: unknown[]) => unknown;
|
|
12189
|
+
}
|
|
12190
|
+
declare const createNullishTransform: FactoryFunction<Dependencies$9, TransformFunction$1>;
|
|
12191
|
+
|
|
12192
|
+
interface Node {
|
|
12193
|
+
compile(): CompiledExpression;
|
|
12194
|
+
}
|
|
12195
|
+
interface CompiledExpression {
|
|
12196
|
+
evaluate(scope: unknown): unknown;
|
|
12197
|
+
}
|
|
12198
|
+
interface TransformFunction {
|
|
12199
|
+
(args: Node[], math: unknown, scope: unknown): unknown;
|
|
12200
|
+
rawArgs?: boolean;
|
|
12201
|
+
}
|
|
12202
|
+
interface Dependencies$8 {
|
|
12203
|
+
or: (...args: unknown[]) => unknown;
|
|
12204
|
+
}
|
|
12205
|
+
declare const createOrTransform: FactoryFunction<Dependencies$8, TransformFunction>;
|
|
12206
|
+
|
|
12207
|
+
interface TypedFunction$7<T = unknown> {
|
|
12208
|
+
(...args: unknown[]): T;
|
|
12209
|
+
}
|
|
12210
|
+
interface Dependencies$7 {
|
|
12211
|
+
print: (...args: unknown[]) => unknown;
|
|
12212
|
+
typed: TypedFunction$7;
|
|
12213
|
+
}
|
|
12214
|
+
declare const createPrintTransform: FactoryFunction<Dependencies$7, unknown>;
|
|
12215
|
+
|
|
12216
|
+
interface TypedFunction$6<T = unknown> {
|
|
12217
|
+
(...args: unknown[]): T;
|
|
12218
|
+
}
|
|
12219
|
+
interface Dependencies$6 {
|
|
12220
|
+
quantileSeq: (...args: unknown[]) => unknown;
|
|
12221
|
+
typed: TypedFunction$6;
|
|
12222
|
+
}
|
|
12223
|
+
/**
|
|
12224
|
+
* Attach a transform function to math.quantileSeq
|
|
12225
|
+
* Adds a property transform containing the transform function.
|
|
12226
|
+
*
|
|
12227
|
+
* This transform changed the `dim` parameter of function std
|
|
12228
|
+
* from one-based to zero based
|
|
12229
|
+
*/
|
|
12230
|
+
declare const createQuantileSeqTransform: FactoryFunction<Dependencies$6, unknown>;
|
|
12231
|
+
|
|
12232
|
+
interface TypedFunction$5<T = unknown> {
|
|
12233
|
+
(...args: unknown[]): T;
|
|
12234
|
+
}
|
|
12235
|
+
interface Dependencies$5 {
|
|
12236
|
+
range: (...args: unknown[]) => unknown;
|
|
12237
|
+
typed: TypedFunction$5;
|
|
12238
|
+
}
|
|
12239
|
+
declare const createRangeTransform: FactoryFunction<Dependencies$5, unknown>;
|
|
12240
|
+
|
|
12241
|
+
interface TypedFunction$4<T = unknown> {
|
|
12242
|
+
(...args: unknown[]): T;
|
|
12243
|
+
}
|
|
12244
|
+
interface Dependencies$4 {
|
|
12245
|
+
row: (...args: unknown[]) => unknown;
|
|
12246
|
+
typed: TypedFunction$4;
|
|
12247
|
+
}
|
|
12248
|
+
/**
|
|
12249
|
+
* Attach a transform function to matrix.column
|
|
12250
|
+
* Adds a property transform containing the transform function.
|
|
12251
|
+
*
|
|
12252
|
+
* This transform changed the last `index` parameter of function column
|
|
12253
|
+
* from zero-based to one-based
|
|
12254
|
+
*/
|
|
12255
|
+
declare const createRowTransform: FactoryFunction<Dependencies$4, unknown>;
|
|
12256
|
+
|
|
12257
|
+
interface TypedFunction$3<T = unknown> {
|
|
12258
|
+
(...args: unknown[]): T;
|
|
12259
|
+
}
|
|
12260
|
+
interface Dependencies$3 {
|
|
12261
|
+
std: (...args: unknown[]) => unknown;
|
|
12262
|
+
typed: TypedFunction$3;
|
|
12263
|
+
}
|
|
12264
|
+
/**
|
|
12265
|
+
* Attach a transform function to math.std
|
|
12266
|
+
* Adds a property transform containing the transform function.
|
|
12267
|
+
*
|
|
12268
|
+
* This transform changed the `dim` parameter of function std
|
|
12269
|
+
* from one-based to zero based
|
|
12270
|
+
*/
|
|
12271
|
+
declare const createStdTransform: FactoryFunction<Dependencies$3, unknown>;
|
|
12272
|
+
|
|
12273
|
+
interface TypedFunction$2<T = unknown> {
|
|
12274
|
+
(...args: unknown[]): T;
|
|
12275
|
+
}
|
|
12276
|
+
interface Dependencies$2 {
|
|
12277
|
+
subset: (...args: unknown[]) => unknown;
|
|
12278
|
+
typed: TypedFunction$2;
|
|
12279
|
+
}
|
|
12280
|
+
declare const createSubsetTransform: FactoryFunction<Dependencies$2, unknown>;
|
|
12281
|
+
|
|
12282
|
+
interface TypedFunction$1<T = unknown> {
|
|
12283
|
+
(...args: unknown[]): T;
|
|
12284
|
+
}
|
|
12285
|
+
interface Dependencies$1 {
|
|
12286
|
+
sum: (...args: unknown[]) => unknown;
|
|
12287
|
+
typed: TypedFunction$1;
|
|
12288
|
+
}
|
|
12289
|
+
declare const createSumTransform: FactoryFunction<Dependencies$1, unknown>;
|
|
12290
|
+
|
|
12291
|
+
interface TypedFunction<T = unknown> {
|
|
12292
|
+
(...args: unknown[]): T;
|
|
12293
|
+
}
|
|
12294
|
+
interface Dependencies {
|
|
12295
|
+
variance: (...args: unknown[]) => unknown;
|
|
12296
|
+
typed: TypedFunction;
|
|
12297
|
+
}
|
|
12298
|
+
/**
|
|
12299
|
+
* Attach a transform function to math.var
|
|
12300
|
+
* Adds a property transform containing the transform function.
|
|
12301
|
+
*
|
|
12302
|
+
* This transform changed the `dim` parameter of function var
|
|
12303
|
+
* from one-based to zero based
|
|
12304
|
+
*/
|
|
12305
|
+
declare const createVarianceTransform: FactoryFunction<Dependencies, unknown>;
|
|
12306
|
+
|
|
12307
|
+
export { type CompiledExpression$8 as CompiledExpression, type OperatorGroup, type OperatorProperty, type Scope, type TypedFunction$k as TypedFunction, type TypedFunctionConstructor, compile, compileExpression, createAccessorNode, createAndTransform, createArrayNode, createAssignmentNode, createBitAndTransform, createBitOrTransform, createBlockNode, createColumnTransform, createConcatTransform, createConditionalNode, createConstantNode, createCumSumTransform, createDiffTransform, createEvaluate, createFilterTransform, createForEachTransform, createFunctionAssignmentNode, createFunctionNode, createHelpClass, createIndexNode, createIndexTransform, createMapSlicesTransform, createMapTransform, createMaxTransform, createMeanTransform, createMinTransform, createNode, createNullishTransform, createObjectNode, createOperatorNode, createOrTransform, createParenthesisNode, createParse, createParser, createParserClass, createPrintTransform, createQuantileSeqTransform, createRangeNode, createRangeTransform, createRelationalNode, createRowTransform, createStdTransform, createSubsetTransform, createSumTransform, createSymbolNode, createVarianceTransform, embeddedDocs, escapeMathML, getAssociativity, getOperator, getPrecedence, isAssociativeWith, keywords, mathMLDocument, mathMLError, properties, toMathMLSymbol };
|