fhirpath-ts 0.0.0-bootstrap.0 → 0.2.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/README.md +50 -18
- package/dist/analyzer/analyze-dto.d.ts +4 -0
- package/dist/analyzer/analyze-dto.d.ts.map +1 -1
- package/dist/analyzer/analyze-dto.js +12 -14
- package/dist/analyzer/analyze-dto.js.map +1 -1
- package/dist/analyzer/analyze.d.ts +22 -6
- package/dist/analyzer/analyze.d.ts.map +1 -1
- package/dist/analyzer/analyze.js +242 -98
- package/dist/analyzer/analyze.js.map +1 -1
- package/dist/analyzer/declarations.d.ts +26 -0
- package/dist/analyzer/declarations.d.ts.map +1 -0
- package/dist/analyzer/declarations.js +68 -0
- package/dist/analyzer/declarations.js.map +1 -0
- package/dist/analyzer/operator-rules.d.ts +127 -0
- package/dist/analyzer/operator-rules.d.ts.map +1 -0
- package/dist/analyzer/operator-rules.js +70 -0
- package/dist/analyzer/operator-rules.js.map +1 -0
- package/dist/analyzer/signatures.d.ts +1097 -10
- package/dist/analyzer/signatures.d.ts.map +1 -1
- package/dist/analyzer/signatures.js +70 -29
- package/dist/analyzer/signatures.js.map +1 -1
- package/dist/api/compile.d.ts +32 -8
- package/dist/api/compile.d.ts.map +1 -1
- package/dist/api/compile.js +2 -0
- package/dist/api/compile.js.map +1 -1
- package/dist/api/engine.d.ts +42 -16
- package/dist/api/engine.d.ts.map +1 -1
- package/dist/api/engine.js +2 -1
- package/dist/api/engine.js.map +1 -1
- package/dist/api/project.d.ts +8 -8
- package/dist/api/project.d.ts.map +1 -1
- package/dist/api/project.js +31 -19
- package/dist/api/project.js.map +1 -1
- package/dist/api/strict.d.ts +6 -0
- package/dist/api/strict.d.ts.map +1 -0
- package/dist/api/strict.js +71 -0
- package/dist/api/strict.js.map +1 -0
- package/dist/api/tagged.d.ts +4 -4
- package/dist/api/tagged.d.ts.map +1 -1
- package/dist/api/tagged.js.map +1 -1
- package/dist/cli/dto-check.js +7 -3
- package/dist/cli/dto-check.js.map +1 -1
- package/dist/engine/context.d.ts +3 -1
- package/dist/engine/context.d.ts.map +1 -1
- package/dist/engine/context.js +5 -1
- package/dist/engine/context.js.map +1 -1
- package/dist/engine/navigation.d.ts.map +1 -1
- package/dist/engine/navigation.js +7 -48
- package/dist/engine/navigation.js.map +1 -1
- package/dist/engine/type-matching.d.ts.map +1 -1
- package/dist/engine/type-matching.js +6 -16
- package/dist/engine/type-matching.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/parser/parser.d.ts.map +1 -1
- package/dist/parser/parser.js +102 -73
- package/dist/parser/parser.js.map +1 -1
- package/dist/parser/precedence.d.ts +368 -4
- package/dist/parser/precedence.d.ts.map +1 -1
- package/dist/parser/precedence.js +146 -32
- package/dist/parser/precedence.js.map +1 -1
- package/dist/r4/generated/type-maps.d.ts +1367 -0
- package/dist/r4/generated/type-maps.d.ts.map +1 -1
- package/dist/r4/index.d.ts +3 -1
- package/dist/r4/index.d.ts.map +1 -1
- package/dist/typed/context-maps.d.ts +23 -0
- package/dist/typed/context-maps.d.ts.map +1 -0
- package/dist/typed/context-maps.js +2 -0
- package/dist/typed/context-maps.js.map +1 -0
- package/dist/typed/infer.d.ts +99 -229
- package/dist/typed/infer.d.ts.map +1 -1
- package/dist/typed/infer.js +1 -84
- package/dist/typed/infer.js.map +1 -1
- package/dist/typed/inference-limits.d.ts +7 -0
- package/dist/typed/inference-limits.d.ts.map +1 -0
- package/dist/typed/inference-limits.js +6 -0
- package/dist/typed/inference-limits.js.map +1 -0
- package/dist/typed/metadata-compact.d.ts +189 -0
- package/dist/typed/metadata-compact.d.ts.map +1 -0
- package/dist/typed/metadata-compact.js +3 -0
- package/dist/typed/metadata-compact.js.map +1 -0
- package/dist/typed/parser.d.ts +515 -0
- package/dist/typed/parser.d.ts.map +1 -0
- package/dist/typed/parser.js +2 -0
- package/dist/typed/parser.js.map +1 -0
- package/dist/values/type-compat.d.ts +8 -0
- package/dist/values/type-compat.d.ts.map +1 -1
- package/dist/values/type-compat.js +44 -1
- package/dist/values/type-compat.js.map +1 -1
- package/package.json +20 -1
- package/src/analyzer/analyze-dto.ts +21 -17
- package/src/analyzer/analyze.ts +335 -109
- package/src/analyzer/declarations.ts +120 -0
- package/src/analyzer/operator-rules.ts +88 -0
- package/src/analyzer/signatures.ts +99 -41
- package/src/api/compile.ts +66 -11
- package/src/api/engine.ts +97 -33
- package/src/api/project.ts +54 -30
- package/src/api/strict.ts +112 -0
- package/src/api/tagged.ts +5 -5
- package/src/cli/dto-check.ts +7 -3
- package/src/engine/context.ts +7 -2
- package/src/engine/navigation.ts +7 -52
- package/src/engine/type-matching.ts +11 -17
- package/src/index.ts +25 -2
- package/src/parser/parser.ts +106 -74
- package/src/parser/precedence.ts +250 -33
- package/src/r4/generated/type-maps.ts +1557 -0
- package/src/typed/context-maps.ts +41 -0
- package/src/typed/infer.ts +157 -425
- package/src/typed/inference-limits.ts +9 -0
- package/src/typed/metadata-compact.ts +307 -0
- package/src/typed/parser.ts +2277 -0
- package/src/values/type-compat.ts +48 -1
- package/dist/typed/perf-fixture.types.d.ts +0 -136
- package/dist/typed/perf-fixture.types.d.ts.map +0 -1
- package/dist/typed/perf-fixture.types.js +0 -2
- package/dist/typed/perf-fixture.types.js.map +0 -1
- package/src/typed/perf-fixture.types.ts +0 -143
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ValueKind } from '../values/type-compat.ts';
|
|
2
|
-
interface StaticStateLike {
|
|
2
|
+
export interface StaticStateLike {
|
|
3
3
|
types: string[] | undefined;
|
|
4
4
|
/** True: at most one item. False: may hold several. Undefined: cardinality unknown. */
|
|
5
5
|
single: boolean | undefined;
|
|
@@ -25,7 +25,7 @@ export interface InputSpec {
|
|
|
25
25
|
kind?: ValueKind;
|
|
26
26
|
singleton?: boolean;
|
|
27
27
|
/** Canonical or local model type names ('CodeableConcept', 'System.String'). */
|
|
28
|
-
types?: string[];
|
|
28
|
+
types?: readonly string[];
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* The declared analyzer signature of a host-supplied function (HAPI's
|
|
@@ -35,21 +35,46 @@ export interface InputSpec {
|
|
|
35
35
|
*/
|
|
36
36
|
export interface CustomFunctionSignature {
|
|
37
37
|
input?: InputSpec;
|
|
38
|
-
args?: ValueArgSpec[];
|
|
38
|
+
args?: readonly ValueArgSpec[];
|
|
39
39
|
result?: {
|
|
40
|
-
types?: string[];
|
|
40
|
+
types?: readonly string[];
|
|
41
41
|
single?: boolean;
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
|
+
/**
|
|
45
|
+
* Declarative result rules shared by analyzer signatures and the generated
|
|
46
|
+
* type-level rule table. Keeping these as data prevents the two inference
|
|
47
|
+
* implementations from acquiring separate handwritten function semantics.
|
|
48
|
+
*/
|
|
49
|
+
export type ResultRule = {
|
|
50
|
+
kind: 'fixed';
|
|
51
|
+
types?: readonly string[];
|
|
52
|
+
single?: boolean;
|
|
53
|
+
} | {
|
|
54
|
+
kind: 'input';
|
|
55
|
+
} | {
|
|
56
|
+
kind: 'input-item';
|
|
57
|
+
} | {
|
|
58
|
+
kind: 'argument';
|
|
59
|
+
index: number;
|
|
60
|
+
} | {
|
|
61
|
+
kind: 'union';
|
|
62
|
+
sources: readonly ('input' | number)[];
|
|
63
|
+
single: boolean | 'all';
|
|
64
|
+
} | {
|
|
65
|
+
kind: 'arguments-union';
|
|
66
|
+
} | {
|
|
67
|
+
kind: 'reference-targets';
|
|
68
|
+
} | {
|
|
69
|
+
kind: 'unknown';
|
|
70
|
+
};
|
|
44
71
|
export interface FunctionSignature {
|
|
45
72
|
input?: InputSpec;
|
|
46
|
-
args?: ArgSpec[];
|
|
47
|
-
|
|
48
|
-
* Result state from the input state and the analyzed argument states
|
|
49
|
-
* (undefined for `type-name` positions and missing optional arguments).
|
|
50
|
-
*/
|
|
51
|
-
result: (input: StaticStateLike, args: readonly (StaticStateLike | undefined)[]) => StaticStateLike;
|
|
73
|
+
args?: readonly ArgSpec[];
|
|
74
|
+
result: ResultRule;
|
|
52
75
|
}
|
|
76
|
+
/** Interpret one declarative result rule for the runtime analyzer. */
|
|
77
|
+
export declare function applyResultRule(rule: ResultRule, input: StaticStateLike, args: readonly (StaticStateLike | undefined)[]): StaticStateLike;
|
|
53
78
|
/**
|
|
54
79
|
* The input's candidate types and reference targets at a different cardinality
|
|
55
80
|
* — the composition every selection/projection result goes through, so target
|
|
@@ -67,6 +92,1068 @@ export declare function unionStates(states: (StaticStateLike | undefined)[]): St
|
|
|
67
92
|
* What the analyzer knows about each function. Functions missing here still get
|
|
68
93
|
* arity checks from the runtime registry; their results become unknown.
|
|
69
94
|
*/
|
|
95
|
+
declare const FUNCTION_SIGNATURE_DEFINITIONS: {
|
|
96
|
+
readonly empty: {
|
|
97
|
+
readonly result: {
|
|
98
|
+
readonly kind: "fixed";
|
|
99
|
+
readonly types: readonly ["System.Boolean"];
|
|
100
|
+
readonly single: true;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
readonly exists: {
|
|
104
|
+
readonly args: readonly ["expression"];
|
|
105
|
+
readonly result: {
|
|
106
|
+
readonly kind: "fixed";
|
|
107
|
+
readonly types: readonly ["System.Boolean"];
|
|
108
|
+
readonly single: true;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
readonly all: {
|
|
112
|
+
readonly args: readonly ["expression"];
|
|
113
|
+
readonly result: {
|
|
114
|
+
readonly kind: "fixed";
|
|
115
|
+
readonly types: readonly ["System.Boolean"];
|
|
116
|
+
readonly single: true;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
readonly allTrue: {
|
|
120
|
+
readonly input: {
|
|
121
|
+
readonly kind: "Boolean";
|
|
122
|
+
};
|
|
123
|
+
readonly result: {
|
|
124
|
+
readonly kind: "fixed";
|
|
125
|
+
readonly types: readonly ["System.Boolean"];
|
|
126
|
+
readonly single: true;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
readonly anyTrue: {
|
|
130
|
+
readonly input: {
|
|
131
|
+
readonly kind: "Boolean";
|
|
132
|
+
};
|
|
133
|
+
readonly result: {
|
|
134
|
+
readonly kind: "fixed";
|
|
135
|
+
readonly types: readonly ["System.Boolean"];
|
|
136
|
+
readonly single: true;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
readonly allFalse: {
|
|
140
|
+
readonly input: {
|
|
141
|
+
readonly kind: "Boolean";
|
|
142
|
+
};
|
|
143
|
+
readonly result: {
|
|
144
|
+
readonly kind: "fixed";
|
|
145
|
+
readonly types: readonly ["System.Boolean"];
|
|
146
|
+
readonly single: true;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
readonly anyFalse: {
|
|
150
|
+
readonly input: {
|
|
151
|
+
readonly kind: "Boolean";
|
|
152
|
+
};
|
|
153
|
+
readonly result: {
|
|
154
|
+
readonly kind: "fixed";
|
|
155
|
+
readonly types: readonly ["System.Boolean"];
|
|
156
|
+
readonly single: true;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
readonly count: {
|
|
160
|
+
readonly result: {
|
|
161
|
+
readonly kind: "fixed";
|
|
162
|
+
readonly types: readonly ["System.Integer"];
|
|
163
|
+
readonly single: true;
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
readonly distinct: {
|
|
167
|
+
readonly result: {
|
|
168
|
+
readonly kind: "input";
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
readonly isDistinct: {
|
|
172
|
+
readonly result: {
|
|
173
|
+
readonly kind: "fixed";
|
|
174
|
+
readonly types: readonly ["System.Boolean"];
|
|
175
|
+
readonly single: true;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
readonly subsetOf: {
|
|
179
|
+
readonly args: readonly ["any"];
|
|
180
|
+
readonly result: {
|
|
181
|
+
readonly kind: "fixed";
|
|
182
|
+
readonly types: readonly ["System.Boolean"];
|
|
183
|
+
readonly single: true;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
readonly supersetOf: {
|
|
187
|
+
readonly args: readonly ["any"];
|
|
188
|
+
readonly result: {
|
|
189
|
+
readonly kind: "fixed";
|
|
190
|
+
readonly types: readonly ["System.Boolean"];
|
|
191
|
+
readonly single: true;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
readonly where: {
|
|
195
|
+
readonly args: readonly ["expression"];
|
|
196
|
+
readonly result: {
|
|
197
|
+
readonly kind: "input";
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
readonly select: {
|
|
201
|
+
readonly args: readonly ["expression"];
|
|
202
|
+
readonly result: {
|
|
203
|
+
readonly kind: "argument";
|
|
204
|
+
readonly index: 0;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
readonly repeat: {
|
|
208
|
+
readonly args: readonly ["expression"];
|
|
209
|
+
readonly result: {
|
|
210
|
+
readonly kind: "unknown";
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
readonly ofType: {
|
|
214
|
+
readonly args: readonly ["type-name"];
|
|
215
|
+
readonly result: {
|
|
216
|
+
readonly kind: "unknown";
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
readonly is: {
|
|
220
|
+
readonly input: {
|
|
221
|
+
readonly singleton: true;
|
|
222
|
+
};
|
|
223
|
+
readonly args: readonly ["type-name"];
|
|
224
|
+
readonly result: {
|
|
225
|
+
readonly kind: "fixed";
|
|
226
|
+
readonly types: readonly ["System.Boolean"];
|
|
227
|
+
readonly single: true;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
readonly as: {
|
|
231
|
+
readonly input: {
|
|
232
|
+
readonly singleton: true;
|
|
233
|
+
};
|
|
234
|
+
readonly args: readonly ["type-name"];
|
|
235
|
+
readonly result: {
|
|
236
|
+
readonly kind: "unknown";
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
readonly single: {
|
|
240
|
+
readonly result: {
|
|
241
|
+
readonly kind: "input-item";
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
readonly first: {
|
|
245
|
+
readonly result: {
|
|
246
|
+
readonly kind: "input-item";
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
readonly last: {
|
|
250
|
+
readonly result: {
|
|
251
|
+
readonly kind: "input-item";
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
readonly tail: {
|
|
255
|
+
readonly result: {
|
|
256
|
+
readonly kind: "input";
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
readonly skip: {
|
|
260
|
+
readonly args: readonly ["Numeric"];
|
|
261
|
+
readonly result: {
|
|
262
|
+
readonly kind: "input";
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
readonly take: {
|
|
266
|
+
readonly args: readonly ["Numeric"];
|
|
267
|
+
readonly result: {
|
|
268
|
+
readonly kind: "input";
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
readonly intersect: {
|
|
272
|
+
readonly args: readonly ["any"];
|
|
273
|
+
readonly result: {
|
|
274
|
+
readonly kind: "input";
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
readonly exclude: {
|
|
278
|
+
readonly args: readonly ["any"];
|
|
279
|
+
readonly result: {
|
|
280
|
+
readonly kind: "input";
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
readonly union: {
|
|
284
|
+
readonly args: readonly ["any"];
|
|
285
|
+
readonly result: {
|
|
286
|
+
readonly kind: "union";
|
|
287
|
+
readonly sources: readonly ["input", 0];
|
|
288
|
+
readonly single: false;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
readonly combine: {
|
|
292
|
+
readonly args: readonly ["any"];
|
|
293
|
+
readonly result: {
|
|
294
|
+
readonly kind: "union";
|
|
295
|
+
readonly sources: readonly ["input", 0];
|
|
296
|
+
readonly single: false;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
readonly iif: {
|
|
300
|
+
readonly args: readonly ["condition", "expression", "expression"];
|
|
301
|
+
readonly result: {
|
|
302
|
+
readonly kind: "union";
|
|
303
|
+
readonly sources: readonly [1, 2];
|
|
304
|
+
readonly single: "all";
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
readonly not: {
|
|
308
|
+
readonly input: {
|
|
309
|
+
readonly singleton: true;
|
|
310
|
+
};
|
|
311
|
+
readonly result: {
|
|
312
|
+
readonly kind: "fixed";
|
|
313
|
+
readonly types: readonly ["System.Boolean"];
|
|
314
|
+
readonly single: true;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
readonly trace: {
|
|
318
|
+
readonly args: readonly ["String", "expression"];
|
|
319
|
+
readonly result: {
|
|
320
|
+
readonly kind: "input";
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
readonly children: {
|
|
324
|
+
readonly result: {
|
|
325
|
+
readonly kind: "unknown";
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
readonly descendants: {
|
|
329
|
+
readonly result: {
|
|
330
|
+
readonly kind: "unknown";
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
readonly resolve: {
|
|
334
|
+
readonly result: {
|
|
335
|
+
readonly kind: "reference-targets";
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
readonly extension: {
|
|
339
|
+
readonly args: readonly ["String"];
|
|
340
|
+
readonly result: {
|
|
341
|
+
readonly kind: "unknown";
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
readonly hasValue: {
|
|
345
|
+
readonly input: {
|
|
346
|
+
readonly singleton: true;
|
|
347
|
+
};
|
|
348
|
+
readonly result: {
|
|
349
|
+
readonly kind: "fixed";
|
|
350
|
+
readonly types: readonly ["System.Boolean"];
|
|
351
|
+
readonly single: true;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
readonly getValue: {
|
|
355
|
+
readonly input: {
|
|
356
|
+
readonly singleton: true;
|
|
357
|
+
};
|
|
358
|
+
readonly result: {
|
|
359
|
+
readonly kind: "unknown";
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
readonly htmlChecks: {
|
|
363
|
+
readonly input: {
|
|
364
|
+
readonly singleton: true;
|
|
365
|
+
};
|
|
366
|
+
readonly result: {
|
|
367
|
+
readonly kind: "fixed";
|
|
368
|
+
readonly types: readonly ["System.Boolean"];
|
|
369
|
+
readonly single: true;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
readonly comparable: {
|
|
373
|
+
readonly input: {
|
|
374
|
+
readonly kind: "Quantity";
|
|
375
|
+
readonly singleton: true;
|
|
376
|
+
};
|
|
377
|
+
readonly args: readonly ["Quantity"];
|
|
378
|
+
readonly result: {
|
|
379
|
+
readonly kind: "fixed";
|
|
380
|
+
readonly types: readonly ["System.Boolean"];
|
|
381
|
+
readonly single: true;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
readonly conformsTo: {
|
|
385
|
+
readonly input: {
|
|
386
|
+
readonly singleton: true;
|
|
387
|
+
};
|
|
388
|
+
readonly args: readonly ["String"];
|
|
389
|
+
readonly result: {
|
|
390
|
+
readonly kind: "fixed";
|
|
391
|
+
readonly types: readonly ["System.Boolean"];
|
|
392
|
+
readonly single: true;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
readonly length: {
|
|
396
|
+
readonly input: {
|
|
397
|
+
readonly kind: "String";
|
|
398
|
+
readonly singleton: true;
|
|
399
|
+
};
|
|
400
|
+
readonly result: {
|
|
401
|
+
readonly kind: "fixed";
|
|
402
|
+
readonly types: readonly ["System.Integer"];
|
|
403
|
+
readonly single: true;
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
readonly indexOf: {
|
|
407
|
+
readonly result: {
|
|
408
|
+
readonly kind: "fixed";
|
|
409
|
+
readonly types: readonly ["System.Integer"];
|
|
410
|
+
readonly single: true;
|
|
411
|
+
};
|
|
412
|
+
readonly input: {
|
|
413
|
+
readonly kind: "String";
|
|
414
|
+
readonly singleton: true;
|
|
415
|
+
};
|
|
416
|
+
readonly args: readonly ["String"];
|
|
417
|
+
};
|
|
418
|
+
readonly lastIndexOf: {
|
|
419
|
+
readonly result: {
|
|
420
|
+
readonly kind: "fixed";
|
|
421
|
+
readonly types: readonly ["System.Integer"];
|
|
422
|
+
readonly single: true;
|
|
423
|
+
};
|
|
424
|
+
readonly input: {
|
|
425
|
+
readonly kind: "String";
|
|
426
|
+
readonly singleton: true;
|
|
427
|
+
};
|
|
428
|
+
readonly args: readonly ["String"];
|
|
429
|
+
};
|
|
430
|
+
readonly substring: {
|
|
431
|
+
readonly input: {
|
|
432
|
+
readonly kind: "String";
|
|
433
|
+
readonly singleton: true;
|
|
434
|
+
};
|
|
435
|
+
readonly args: readonly ["Numeric", "Numeric"];
|
|
436
|
+
readonly result: {
|
|
437
|
+
readonly kind: "fixed";
|
|
438
|
+
readonly types: readonly ["System.String"];
|
|
439
|
+
readonly single: true;
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
readonly startsWith: {
|
|
443
|
+
readonly result: {
|
|
444
|
+
readonly kind: "fixed";
|
|
445
|
+
readonly types: readonly ["System.Boolean"];
|
|
446
|
+
readonly single: true;
|
|
447
|
+
};
|
|
448
|
+
readonly input: {
|
|
449
|
+
readonly kind: "String";
|
|
450
|
+
readonly singleton: true;
|
|
451
|
+
};
|
|
452
|
+
readonly args: readonly ["String"];
|
|
453
|
+
};
|
|
454
|
+
readonly endsWith: {
|
|
455
|
+
readonly result: {
|
|
456
|
+
readonly kind: "fixed";
|
|
457
|
+
readonly types: readonly ["System.Boolean"];
|
|
458
|
+
readonly single: true;
|
|
459
|
+
};
|
|
460
|
+
readonly input: {
|
|
461
|
+
readonly kind: "String";
|
|
462
|
+
readonly singleton: true;
|
|
463
|
+
};
|
|
464
|
+
readonly args: readonly ["String"];
|
|
465
|
+
};
|
|
466
|
+
readonly contains: {
|
|
467
|
+
readonly result: {
|
|
468
|
+
readonly kind: "fixed";
|
|
469
|
+
readonly types: readonly ["System.Boolean"];
|
|
470
|
+
readonly single: true;
|
|
471
|
+
};
|
|
472
|
+
readonly input: {
|
|
473
|
+
readonly kind: "String";
|
|
474
|
+
readonly singleton: true;
|
|
475
|
+
};
|
|
476
|
+
readonly args: readonly ["String"];
|
|
477
|
+
};
|
|
478
|
+
readonly upper: {
|
|
479
|
+
readonly input: {
|
|
480
|
+
readonly kind: "String";
|
|
481
|
+
readonly singleton: true;
|
|
482
|
+
};
|
|
483
|
+
readonly result: {
|
|
484
|
+
readonly kind: "fixed";
|
|
485
|
+
readonly types: readonly ["System.String"];
|
|
486
|
+
readonly single: true;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
readonly lower: {
|
|
490
|
+
readonly input: {
|
|
491
|
+
readonly kind: "String";
|
|
492
|
+
readonly singleton: true;
|
|
493
|
+
};
|
|
494
|
+
readonly result: {
|
|
495
|
+
readonly kind: "fixed";
|
|
496
|
+
readonly types: readonly ["System.String"];
|
|
497
|
+
readonly single: true;
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
readonly replace: {
|
|
501
|
+
readonly input: {
|
|
502
|
+
readonly kind: "String";
|
|
503
|
+
readonly singleton: true;
|
|
504
|
+
};
|
|
505
|
+
readonly args: readonly ["String", "String"];
|
|
506
|
+
readonly result: {
|
|
507
|
+
readonly kind: "fixed";
|
|
508
|
+
readonly types: readonly ["System.String"];
|
|
509
|
+
readonly single: true;
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
readonly matches: {
|
|
513
|
+
readonly result: {
|
|
514
|
+
readonly kind: "fixed";
|
|
515
|
+
readonly types: readonly ["System.Boolean"];
|
|
516
|
+
readonly single: true;
|
|
517
|
+
};
|
|
518
|
+
readonly input: {
|
|
519
|
+
readonly kind: "String";
|
|
520
|
+
readonly singleton: true;
|
|
521
|
+
};
|
|
522
|
+
readonly args: readonly ["String"];
|
|
523
|
+
};
|
|
524
|
+
readonly matchesFull: {
|
|
525
|
+
readonly result: {
|
|
526
|
+
readonly kind: "fixed";
|
|
527
|
+
readonly types: readonly ["System.Boolean"];
|
|
528
|
+
readonly single: true;
|
|
529
|
+
};
|
|
530
|
+
readonly input: {
|
|
531
|
+
readonly kind: "String";
|
|
532
|
+
readonly singleton: true;
|
|
533
|
+
};
|
|
534
|
+
readonly args: readonly ["String"];
|
|
535
|
+
};
|
|
536
|
+
readonly replaceMatches: {
|
|
537
|
+
readonly input: {
|
|
538
|
+
readonly kind: "String";
|
|
539
|
+
readonly singleton: true;
|
|
540
|
+
};
|
|
541
|
+
readonly args: readonly ["String", "String"];
|
|
542
|
+
readonly result: {
|
|
543
|
+
readonly kind: "fixed";
|
|
544
|
+
readonly types: readonly ["System.String"];
|
|
545
|
+
readonly single: true;
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
readonly toChars: {
|
|
549
|
+
readonly input: {
|
|
550
|
+
readonly kind: "String";
|
|
551
|
+
readonly singleton: true;
|
|
552
|
+
};
|
|
553
|
+
readonly result: {
|
|
554
|
+
readonly kind: "fixed";
|
|
555
|
+
readonly types: readonly ["System.String"];
|
|
556
|
+
readonly single: false;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
readonly trim: {
|
|
560
|
+
readonly input: {
|
|
561
|
+
readonly kind: "String";
|
|
562
|
+
readonly singleton: true;
|
|
563
|
+
};
|
|
564
|
+
readonly result: {
|
|
565
|
+
readonly kind: "fixed";
|
|
566
|
+
readonly types: readonly ["System.String"];
|
|
567
|
+
readonly single: true;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
readonly split: {
|
|
571
|
+
readonly input: {
|
|
572
|
+
readonly kind: "String";
|
|
573
|
+
readonly singleton: true;
|
|
574
|
+
};
|
|
575
|
+
readonly args: readonly ["String"];
|
|
576
|
+
readonly result: {
|
|
577
|
+
readonly kind: "fixed";
|
|
578
|
+
readonly types: readonly ["System.String"];
|
|
579
|
+
readonly single: false;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
readonly join: {
|
|
583
|
+
readonly input: {
|
|
584
|
+
readonly kind: "String";
|
|
585
|
+
};
|
|
586
|
+
readonly args: readonly ["String"];
|
|
587
|
+
readonly result: {
|
|
588
|
+
readonly kind: "fixed";
|
|
589
|
+
readonly types: readonly ["System.String"];
|
|
590
|
+
readonly single: true;
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
readonly encode: {
|
|
594
|
+
readonly input: {
|
|
595
|
+
readonly kind: "String";
|
|
596
|
+
readonly singleton: true;
|
|
597
|
+
};
|
|
598
|
+
readonly args: readonly ["String"];
|
|
599
|
+
readonly result: {
|
|
600
|
+
readonly kind: "fixed";
|
|
601
|
+
readonly types: readonly ["System.String"];
|
|
602
|
+
readonly single: true;
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
readonly decode: {
|
|
606
|
+
readonly input: {
|
|
607
|
+
readonly kind: "String";
|
|
608
|
+
readonly singleton: true;
|
|
609
|
+
};
|
|
610
|
+
readonly args: readonly ["String"];
|
|
611
|
+
readonly result: {
|
|
612
|
+
readonly kind: "fixed";
|
|
613
|
+
readonly types: readonly ["System.String"];
|
|
614
|
+
readonly single: true;
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
readonly escape: {
|
|
618
|
+
readonly input: {
|
|
619
|
+
readonly kind: "String";
|
|
620
|
+
readonly singleton: true;
|
|
621
|
+
};
|
|
622
|
+
readonly args: readonly ["String"];
|
|
623
|
+
readonly result: {
|
|
624
|
+
readonly kind: "fixed";
|
|
625
|
+
readonly types: readonly ["System.String"];
|
|
626
|
+
readonly single: true;
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
readonly unescape: {
|
|
630
|
+
readonly input: {
|
|
631
|
+
readonly kind: "String";
|
|
632
|
+
readonly singleton: true;
|
|
633
|
+
};
|
|
634
|
+
readonly args: readonly ["String"];
|
|
635
|
+
readonly result: {
|
|
636
|
+
readonly kind: "fixed";
|
|
637
|
+
readonly types: readonly ["System.String"];
|
|
638
|
+
readonly single: true;
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
readonly abs: {
|
|
642
|
+
readonly input: {
|
|
643
|
+
readonly singleton: true;
|
|
644
|
+
};
|
|
645
|
+
readonly result: {
|
|
646
|
+
readonly kind: "unknown";
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
readonly ceiling: {
|
|
650
|
+
readonly input: {
|
|
651
|
+
readonly kind: "Numeric";
|
|
652
|
+
readonly singleton: true;
|
|
653
|
+
};
|
|
654
|
+
readonly result: {
|
|
655
|
+
readonly kind: "fixed";
|
|
656
|
+
readonly types: readonly ["System.Integer"];
|
|
657
|
+
readonly single: true;
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
readonly floor: {
|
|
661
|
+
readonly input: {
|
|
662
|
+
readonly kind: "Numeric";
|
|
663
|
+
readonly singleton: true;
|
|
664
|
+
};
|
|
665
|
+
readonly result: {
|
|
666
|
+
readonly kind: "fixed";
|
|
667
|
+
readonly types: readonly ["System.Integer"];
|
|
668
|
+
readonly single: true;
|
|
669
|
+
};
|
|
670
|
+
};
|
|
671
|
+
readonly truncate: {
|
|
672
|
+
readonly input: {
|
|
673
|
+
readonly kind: "Numeric";
|
|
674
|
+
readonly singleton: true;
|
|
675
|
+
};
|
|
676
|
+
readonly result: {
|
|
677
|
+
readonly kind: "fixed";
|
|
678
|
+
readonly types: readonly ["System.Integer"];
|
|
679
|
+
readonly single: true;
|
|
680
|
+
};
|
|
681
|
+
};
|
|
682
|
+
readonly round: {
|
|
683
|
+
readonly input: {
|
|
684
|
+
readonly kind: "Numeric";
|
|
685
|
+
readonly singleton: true;
|
|
686
|
+
};
|
|
687
|
+
readonly args: readonly ["Numeric"];
|
|
688
|
+
readonly result: {
|
|
689
|
+
readonly kind: "fixed";
|
|
690
|
+
readonly types: readonly ["System.Decimal"];
|
|
691
|
+
readonly single: true;
|
|
692
|
+
};
|
|
693
|
+
};
|
|
694
|
+
readonly exp: {
|
|
695
|
+
readonly input: {
|
|
696
|
+
readonly kind: "Numeric";
|
|
697
|
+
readonly singleton: true;
|
|
698
|
+
};
|
|
699
|
+
readonly result: {
|
|
700
|
+
readonly kind: "fixed";
|
|
701
|
+
readonly types: readonly ["System.Decimal"];
|
|
702
|
+
readonly single: true;
|
|
703
|
+
};
|
|
704
|
+
};
|
|
705
|
+
readonly ln: {
|
|
706
|
+
readonly input: {
|
|
707
|
+
readonly kind: "Numeric";
|
|
708
|
+
readonly singleton: true;
|
|
709
|
+
};
|
|
710
|
+
readonly result: {
|
|
711
|
+
readonly kind: "fixed";
|
|
712
|
+
readonly types: readonly ["System.Decimal"];
|
|
713
|
+
readonly single: true;
|
|
714
|
+
};
|
|
715
|
+
};
|
|
716
|
+
readonly sqrt: {
|
|
717
|
+
readonly input: {
|
|
718
|
+
readonly kind: "Numeric";
|
|
719
|
+
readonly singleton: true;
|
|
720
|
+
};
|
|
721
|
+
readonly result: {
|
|
722
|
+
readonly kind: "fixed";
|
|
723
|
+
readonly types: readonly ["System.Decimal"];
|
|
724
|
+
readonly single: true;
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
readonly log: {
|
|
728
|
+
readonly input: {
|
|
729
|
+
readonly kind: "Numeric";
|
|
730
|
+
readonly singleton: true;
|
|
731
|
+
};
|
|
732
|
+
readonly args: readonly ["Numeric"];
|
|
733
|
+
readonly result: {
|
|
734
|
+
readonly kind: "fixed";
|
|
735
|
+
readonly types: readonly ["System.Decimal"];
|
|
736
|
+
readonly single: true;
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
readonly power: {
|
|
740
|
+
readonly input: {
|
|
741
|
+
readonly kind: "Numeric";
|
|
742
|
+
readonly singleton: true;
|
|
743
|
+
};
|
|
744
|
+
readonly args: readonly ["Numeric"];
|
|
745
|
+
readonly result: {
|
|
746
|
+
readonly kind: "unknown";
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
readonly aggregate: {
|
|
750
|
+
readonly args: readonly ["expression", "any"];
|
|
751
|
+
readonly result: {
|
|
752
|
+
readonly kind: "union";
|
|
753
|
+
readonly sources: readonly [0, 1];
|
|
754
|
+
readonly single: "all";
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
readonly sum: {
|
|
758
|
+
readonly input: {
|
|
759
|
+
readonly kind: "Numeric";
|
|
760
|
+
};
|
|
761
|
+
readonly result: {
|
|
762
|
+
readonly kind: "unknown";
|
|
763
|
+
};
|
|
764
|
+
};
|
|
765
|
+
readonly min: {
|
|
766
|
+
readonly input: {
|
|
767
|
+
readonly kind: "Numeric";
|
|
768
|
+
};
|
|
769
|
+
readonly result: {
|
|
770
|
+
readonly kind: "unknown";
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
readonly max: {
|
|
774
|
+
readonly input: {
|
|
775
|
+
readonly kind: "Numeric";
|
|
776
|
+
};
|
|
777
|
+
readonly result: {
|
|
778
|
+
readonly kind: "unknown";
|
|
779
|
+
};
|
|
780
|
+
};
|
|
781
|
+
readonly avg: {
|
|
782
|
+
readonly input: {
|
|
783
|
+
readonly kind: "Numeric";
|
|
784
|
+
};
|
|
785
|
+
readonly result: {
|
|
786
|
+
readonly kind: "fixed";
|
|
787
|
+
readonly types: readonly ["System.Decimal"];
|
|
788
|
+
readonly single: true;
|
|
789
|
+
};
|
|
790
|
+
};
|
|
791
|
+
readonly sort: {
|
|
792
|
+
readonly args: readonly ["sort-key"];
|
|
793
|
+
readonly result: {
|
|
794
|
+
readonly kind: "input";
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
readonly toBoolean: {
|
|
798
|
+
readonly input: {
|
|
799
|
+
readonly singleton: true;
|
|
800
|
+
};
|
|
801
|
+
readonly result: {
|
|
802
|
+
readonly kind: "fixed";
|
|
803
|
+
readonly types: readonly ["System.Boolean"];
|
|
804
|
+
readonly single: true;
|
|
805
|
+
};
|
|
806
|
+
};
|
|
807
|
+
readonly toInteger: {
|
|
808
|
+
readonly input: {
|
|
809
|
+
readonly singleton: true;
|
|
810
|
+
};
|
|
811
|
+
readonly result: {
|
|
812
|
+
readonly kind: "fixed";
|
|
813
|
+
readonly types: readonly ["System.Integer"];
|
|
814
|
+
readonly single: true;
|
|
815
|
+
};
|
|
816
|
+
};
|
|
817
|
+
readonly toLong: {
|
|
818
|
+
readonly input: {
|
|
819
|
+
readonly singleton: true;
|
|
820
|
+
};
|
|
821
|
+
readonly result: {
|
|
822
|
+
readonly kind: "fixed";
|
|
823
|
+
readonly types: readonly ["System.Long"];
|
|
824
|
+
readonly single: true;
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
readonly toDecimal: {
|
|
828
|
+
readonly input: {
|
|
829
|
+
readonly singleton: true;
|
|
830
|
+
};
|
|
831
|
+
readonly result: {
|
|
832
|
+
readonly kind: "fixed";
|
|
833
|
+
readonly types: readonly ["System.Decimal"];
|
|
834
|
+
readonly single: true;
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
readonly toString: {
|
|
838
|
+
readonly input: {
|
|
839
|
+
readonly singleton: true;
|
|
840
|
+
};
|
|
841
|
+
readonly result: {
|
|
842
|
+
readonly kind: "fixed";
|
|
843
|
+
readonly types: readonly ["System.String"];
|
|
844
|
+
readonly single: true;
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
readonly toDate: {
|
|
848
|
+
readonly input: {
|
|
849
|
+
readonly singleton: true;
|
|
850
|
+
};
|
|
851
|
+
readonly result: {
|
|
852
|
+
readonly kind: "fixed";
|
|
853
|
+
readonly types: readonly ["System.Date"];
|
|
854
|
+
readonly single: true;
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
readonly toDateTime: {
|
|
858
|
+
readonly input: {
|
|
859
|
+
readonly singleton: true;
|
|
860
|
+
};
|
|
861
|
+
readonly result: {
|
|
862
|
+
readonly kind: "fixed";
|
|
863
|
+
readonly types: readonly ["System.DateTime"];
|
|
864
|
+
readonly single: true;
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
readonly toTime: {
|
|
868
|
+
readonly input: {
|
|
869
|
+
readonly singleton: true;
|
|
870
|
+
};
|
|
871
|
+
readonly result: {
|
|
872
|
+
readonly kind: "fixed";
|
|
873
|
+
readonly types: readonly ["System.Time"];
|
|
874
|
+
readonly single: true;
|
|
875
|
+
};
|
|
876
|
+
};
|
|
877
|
+
readonly toQuantity: {
|
|
878
|
+
readonly input: {
|
|
879
|
+
readonly singleton: true;
|
|
880
|
+
};
|
|
881
|
+
readonly args: readonly ["String"];
|
|
882
|
+
readonly result: {
|
|
883
|
+
readonly kind: "fixed";
|
|
884
|
+
readonly types: readonly ["System.Quantity"];
|
|
885
|
+
readonly single: true;
|
|
886
|
+
};
|
|
887
|
+
};
|
|
888
|
+
readonly convertsToBoolean: {
|
|
889
|
+
readonly input: {
|
|
890
|
+
readonly singleton: true;
|
|
891
|
+
};
|
|
892
|
+
readonly result: {
|
|
893
|
+
readonly kind: "fixed";
|
|
894
|
+
readonly types: readonly ["System.Boolean"];
|
|
895
|
+
readonly single: true;
|
|
896
|
+
};
|
|
897
|
+
};
|
|
898
|
+
readonly convertsToInteger: {
|
|
899
|
+
readonly input: {
|
|
900
|
+
readonly singleton: true;
|
|
901
|
+
};
|
|
902
|
+
readonly result: {
|
|
903
|
+
readonly kind: "fixed";
|
|
904
|
+
readonly types: readonly ["System.Boolean"];
|
|
905
|
+
readonly single: true;
|
|
906
|
+
};
|
|
907
|
+
};
|
|
908
|
+
readonly convertsToLong: {
|
|
909
|
+
readonly input: {
|
|
910
|
+
readonly singleton: true;
|
|
911
|
+
};
|
|
912
|
+
readonly result: {
|
|
913
|
+
readonly kind: "fixed";
|
|
914
|
+
readonly types: readonly ["System.Boolean"];
|
|
915
|
+
readonly single: true;
|
|
916
|
+
};
|
|
917
|
+
};
|
|
918
|
+
readonly convertsToDecimal: {
|
|
919
|
+
readonly input: {
|
|
920
|
+
readonly singleton: true;
|
|
921
|
+
};
|
|
922
|
+
readonly result: {
|
|
923
|
+
readonly kind: "fixed";
|
|
924
|
+
readonly types: readonly ["System.Boolean"];
|
|
925
|
+
readonly single: true;
|
|
926
|
+
};
|
|
927
|
+
};
|
|
928
|
+
readonly convertsToString: {
|
|
929
|
+
readonly input: {
|
|
930
|
+
readonly singleton: true;
|
|
931
|
+
};
|
|
932
|
+
readonly result: {
|
|
933
|
+
readonly kind: "fixed";
|
|
934
|
+
readonly types: readonly ["System.Boolean"];
|
|
935
|
+
readonly single: true;
|
|
936
|
+
};
|
|
937
|
+
};
|
|
938
|
+
readonly convertsToDate: {
|
|
939
|
+
readonly input: {
|
|
940
|
+
readonly singleton: true;
|
|
941
|
+
};
|
|
942
|
+
readonly result: {
|
|
943
|
+
readonly kind: "fixed";
|
|
944
|
+
readonly types: readonly ["System.Boolean"];
|
|
945
|
+
readonly single: true;
|
|
946
|
+
};
|
|
947
|
+
};
|
|
948
|
+
readonly convertsToDateTime: {
|
|
949
|
+
readonly input: {
|
|
950
|
+
readonly singleton: true;
|
|
951
|
+
};
|
|
952
|
+
readonly result: {
|
|
953
|
+
readonly kind: "fixed";
|
|
954
|
+
readonly types: readonly ["System.Boolean"];
|
|
955
|
+
readonly single: true;
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
readonly convertsToTime: {
|
|
959
|
+
readonly input: {
|
|
960
|
+
readonly singleton: true;
|
|
961
|
+
};
|
|
962
|
+
readonly result: {
|
|
963
|
+
readonly kind: "fixed";
|
|
964
|
+
readonly types: readonly ["System.Boolean"];
|
|
965
|
+
readonly single: true;
|
|
966
|
+
};
|
|
967
|
+
};
|
|
968
|
+
readonly convertsToQuantity: {
|
|
969
|
+
readonly input: {
|
|
970
|
+
readonly singleton: true;
|
|
971
|
+
};
|
|
972
|
+
readonly args: readonly ["String"];
|
|
973
|
+
readonly result: {
|
|
974
|
+
readonly kind: "fixed";
|
|
975
|
+
readonly types: readonly ["System.Boolean"];
|
|
976
|
+
readonly single: true;
|
|
977
|
+
};
|
|
978
|
+
};
|
|
979
|
+
readonly now: {
|
|
980
|
+
readonly result: {
|
|
981
|
+
readonly kind: "fixed";
|
|
982
|
+
readonly types: readonly ["System.DateTime"];
|
|
983
|
+
readonly single: true;
|
|
984
|
+
};
|
|
985
|
+
};
|
|
986
|
+
readonly today: {
|
|
987
|
+
readonly result: {
|
|
988
|
+
readonly kind: "fixed";
|
|
989
|
+
readonly types: readonly ["System.Date"];
|
|
990
|
+
readonly single: true;
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
readonly timeOfDay: {
|
|
994
|
+
readonly result: {
|
|
995
|
+
readonly kind: "fixed";
|
|
996
|
+
readonly types: readonly ["System.Time"];
|
|
997
|
+
readonly single: true;
|
|
998
|
+
};
|
|
999
|
+
};
|
|
1000
|
+
readonly yearOf: {
|
|
1001
|
+
readonly input: {
|
|
1002
|
+
readonly kind: "Temporal";
|
|
1003
|
+
readonly singleton: true;
|
|
1004
|
+
};
|
|
1005
|
+
readonly result: {
|
|
1006
|
+
readonly kind: "fixed";
|
|
1007
|
+
readonly types: readonly ["System.Integer"];
|
|
1008
|
+
readonly single: true;
|
|
1009
|
+
};
|
|
1010
|
+
};
|
|
1011
|
+
readonly monthOf: {
|
|
1012
|
+
readonly input: {
|
|
1013
|
+
readonly kind: "Temporal";
|
|
1014
|
+
readonly singleton: true;
|
|
1015
|
+
};
|
|
1016
|
+
readonly result: {
|
|
1017
|
+
readonly kind: "fixed";
|
|
1018
|
+
readonly types: readonly ["System.Integer"];
|
|
1019
|
+
readonly single: true;
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
1022
|
+
readonly dayOf: {
|
|
1023
|
+
readonly input: {
|
|
1024
|
+
readonly kind: "Temporal";
|
|
1025
|
+
readonly singleton: true;
|
|
1026
|
+
};
|
|
1027
|
+
readonly result: {
|
|
1028
|
+
readonly kind: "fixed";
|
|
1029
|
+
readonly types: readonly ["System.Integer"];
|
|
1030
|
+
readonly single: true;
|
|
1031
|
+
};
|
|
1032
|
+
};
|
|
1033
|
+
readonly hourOf: {
|
|
1034
|
+
readonly input: {
|
|
1035
|
+
readonly kind: "Temporal";
|
|
1036
|
+
readonly singleton: true;
|
|
1037
|
+
};
|
|
1038
|
+
readonly result: {
|
|
1039
|
+
readonly kind: "fixed";
|
|
1040
|
+
readonly types: readonly ["System.Integer"];
|
|
1041
|
+
readonly single: true;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
readonly minuteOf: {
|
|
1045
|
+
readonly input: {
|
|
1046
|
+
readonly kind: "Temporal";
|
|
1047
|
+
readonly singleton: true;
|
|
1048
|
+
};
|
|
1049
|
+
readonly result: {
|
|
1050
|
+
readonly kind: "fixed";
|
|
1051
|
+
readonly types: readonly ["System.Integer"];
|
|
1052
|
+
readonly single: true;
|
|
1053
|
+
};
|
|
1054
|
+
};
|
|
1055
|
+
readonly secondOf: {
|
|
1056
|
+
readonly input: {
|
|
1057
|
+
readonly kind: "Temporal";
|
|
1058
|
+
readonly singleton: true;
|
|
1059
|
+
};
|
|
1060
|
+
readonly result: {
|
|
1061
|
+
readonly kind: "fixed";
|
|
1062
|
+
readonly types: readonly ["System.Integer"];
|
|
1063
|
+
readonly single: true;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
readonly millisecondOf: {
|
|
1067
|
+
readonly input: {
|
|
1068
|
+
readonly kind: "Temporal";
|
|
1069
|
+
readonly singleton: true;
|
|
1070
|
+
};
|
|
1071
|
+
readonly result: {
|
|
1072
|
+
readonly kind: "fixed";
|
|
1073
|
+
readonly types: readonly ["System.Integer"];
|
|
1074
|
+
readonly single: true;
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
readonly timezoneOffsetOf: {
|
|
1078
|
+
readonly input: {
|
|
1079
|
+
readonly kind: "Temporal";
|
|
1080
|
+
readonly singleton: true;
|
|
1081
|
+
};
|
|
1082
|
+
readonly result: {
|
|
1083
|
+
readonly kind: "fixed";
|
|
1084
|
+
readonly types: readonly ["System.Decimal"];
|
|
1085
|
+
readonly single: true;
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
readonly dateOf: {
|
|
1089
|
+
readonly input: {
|
|
1090
|
+
readonly kind: "Temporal";
|
|
1091
|
+
readonly singleton: true;
|
|
1092
|
+
};
|
|
1093
|
+
readonly result: {
|
|
1094
|
+
readonly kind: "fixed";
|
|
1095
|
+
readonly types: readonly ["System.Date"];
|
|
1096
|
+
readonly single: true;
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
readonly timeOf: {
|
|
1100
|
+
readonly input: {
|
|
1101
|
+
readonly kind: "Temporal";
|
|
1102
|
+
readonly singleton: true;
|
|
1103
|
+
};
|
|
1104
|
+
readonly result: {
|
|
1105
|
+
readonly kind: "fixed";
|
|
1106
|
+
readonly types: readonly ["System.Time"];
|
|
1107
|
+
readonly single: true;
|
|
1108
|
+
};
|
|
1109
|
+
};
|
|
1110
|
+
readonly lowBoundary: {
|
|
1111
|
+
readonly input: {
|
|
1112
|
+
readonly singleton: true;
|
|
1113
|
+
};
|
|
1114
|
+
readonly args: readonly ["Numeric"];
|
|
1115
|
+
readonly result: {
|
|
1116
|
+
readonly kind: "unknown";
|
|
1117
|
+
};
|
|
1118
|
+
};
|
|
1119
|
+
readonly highBoundary: {
|
|
1120
|
+
readonly input: {
|
|
1121
|
+
readonly singleton: true;
|
|
1122
|
+
};
|
|
1123
|
+
readonly args: readonly ["Numeric"];
|
|
1124
|
+
readonly result: {
|
|
1125
|
+
readonly kind: "unknown";
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
readonly precision: {
|
|
1129
|
+
readonly input: {
|
|
1130
|
+
readonly singleton: true;
|
|
1131
|
+
};
|
|
1132
|
+
readonly result: {
|
|
1133
|
+
readonly kind: "fixed";
|
|
1134
|
+
readonly types: readonly ["System.Integer"];
|
|
1135
|
+
readonly single: true;
|
|
1136
|
+
};
|
|
1137
|
+
};
|
|
1138
|
+
readonly defineVariable: {
|
|
1139
|
+
readonly args: readonly ["String", "expression"];
|
|
1140
|
+
readonly result: {
|
|
1141
|
+
readonly kind: "input";
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
readonly coalesce: {
|
|
1145
|
+
readonly args: readonly ["expression"];
|
|
1146
|
+
readonly result: {
|
|
1147
|
+
readonly kind: "arguments-union";
|
|
1148
|
+
};
|
|
1149
|
+
};
|
|
1150
|
+
readonly type: {
|
|
1151
|
+
readonly result: {
|
|
1152
|
+
readonly kind: "unknown";
|
|
1153
|
+
};
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
export type FunctionSignatureName = keyof typeof FUNCTION_SIGNATURE_DEFINITIONS;
|
|
70
1157
|
export declare const FUNCTION_SIGNATURES: Readonly<Record<string, FunctionSignature>>;
|
|
71
1158
|
export {};
|
|
72
1159
|
//# sourceMappingURL=signatures.d.ts.map
|