@mojir/lits 2.1.23 → 2.1.25
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/cli/cli.js +10171 -10047
- package/dist/cli/reference/api.d.ts +6 -3
- package/dist/cli/reference/categories/meta.d.ts +3 -0
- package/dist/cli/reference/index.d.ts +622 -620
- package/dist/cli/src/Lits/Lits.d.ts +3 -2
- package/dist/cli/src/builtin/interface.d.ts +4 -5
- package/dist/cli/src/builtin/normalExpressions/categories/meta.d.ts +3 -0
- package/dist/cli/src/builtin/normalExpressions/index.d.ts +3 -0
- package/dist/cli/src/builtin/specialExpressions/functions.d.ts +2 -2
- package/dist/cli/src/parser/Parser.d.ts +1 -0
- package/dist/cli/src/parser/types.d.ts +5 -2
- package/dist/cli/src/tokenizer/token.d.ts +4 -2
- package/dist/cli/src/tokenizer/tokenizers.d.ts +3 -2
- package/dist/cli/src/typeGuards/index.d.ts +0 -4
- package/dist/cli/src/utils/arity.d.ts +10 -0
- package/dist/cli/src/utils/docString/generateDocString.d.ts +2 -0
- package/dist/cli/src/utils/index.d.ts +1 -0
- package/dist/index.esm.js +9883 -9759
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9883 -9759
- package/dist/index.js.map +1 -1
- package/dist/lits.iife.js +9923 -9799
- package/dist/lits.iife.js.map +1 -1
- package/dist/reference/api.d.ts +6 -3
- package/dist/reference/categories/meta.d.ts +3 -0
- package/dist/reference/index.d.ts +622 -620
- package/dist/src/Lits/Lits.d.ts +3 -2
- package/dist/src/builtin/interface.d.ts +4 -5
- package/dist/src/builtin/normalExpressions/categories/meta.d.ts +3 -0
- package/dist/src/builtin/normalExpressions/index.d.ts +3 -0
- package/dist/src/builtin/specialExpressions/functions.d.ts +2 -2
- package/dist/src/index.d.ts +1 -0
- package/dist/src/parser/Parser.d.ts +1 -0
- package/dist/src/parser/types.d.ts +5 -2
- package/dist/src/tokenizer/token.d.ts +4 -2
- package/dist/src/tokenizer/tokenizers.d.ts +3 -2
- package/dist/src/typeGuards/index.d.ts +0 -4
- package/dist/src/utils/arity.d.ts +10 -0
- package/dist/src/utils/docString/generateDocString.d.ts +2 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/testFramework.esm.js +16790 -748
- package/dist/testFramework.esm.js.map +1 -1
- package/dist/testFramework.js +16790 -748
- package/dist/testFramework.js.map +1 -1
- package/package.json +1 -1
- package/dist/cli/src/utils/paramCount.d.ts +0 -7
- package/dist/src/utils/paramCount.d.ts +0 -7
|
@@ -44,626 +44,628 @@ export declare function isShorthandReference<T extends Category>(ref: Reference<
|
|
|
44
44
|
export declare function isDatatypeReference<T extends Category>(ref: Reference<T>): ref is DatatypeReference;
|
|
45
45
|
export declare const normalExpressionReference: Record<NormalExpressionName, FunctionReference>;
|
|
46
46
|
export declare const functionReference: {
|
|
47
|
-
number: FunctionReference<"String" | "
|
|
48
|
-
boolean: FunctionReference<"String" | "
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
take: FunctionReference<"String" | "
|
|
121
|
-
"take-last": FunctionReference<"String" | "
|
|
122
|
-
"take-while": FunctionReference<"String" | "
|
|
123
|
-
drop: FunctionReference<"String" | "
|
|
124
|
-
"drop-last": FunctionReference<"String" | "
|
|
125
|
-
"drop-while": FunctionReference<"String" | "
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
"
|
|
137
|
-
|
|
138
|
-
"starts-with?": FunctionReference<"String" | "
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
sinh: FunctionReference<"String" | "
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
"!": FunctionReference<"String" | "
|
|
184
|
-
"
|
|
185
|
-
"iso-date->epoch": FunctionReference<"String" | "
|
|
186
|
-
"
|
|
187
|
-
compare: FunctionReference<"String" | "
|
|
188
|
-
"
|
|
189
|
-
"json-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
"
|
|
209
|
-
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
"
|
|
255
|
-
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"grid:every
|
|
269
|
-
"grid:some
|
|
270
|
-
"grid:every-
|
|
271
|
-
"grid:some-
|
|
272
|
-
"grid:
|
|
273
|
-
"grid:col": FunctionReference<"String" | "
|
|
274
|
-
"grid:
|
|
275
|
-
"grid:
|
|
276
|
-
"grid:
|
|
277
|
-
"grid:
|
|
278
|
-
"grid:
|
|
279
|
-
"grid:
|
|
280
|
-
"grid:
|
|
281
|
-
"grid:
|
|
282
|
-
"grid:
|
|
283
|
-
"grid:
|
|
284
|
-
"grid:
|
|
285
|
-
"grid:
|
|
286
|
-
"grid:slice
|
|
287
|
-
"grid:
|
|
288
|
-
"grid:
|
|
289
|
-
"grid:
|
|
290
|
-
"grid:
|
|
291
|
-
"grid:
|
|
292
|
-
"grid:
|
|
293
|
-
"grid:
|
|
294
|
-
"grid:
|
|
295
|
-
"grid:
|
|
296
|
-
"grid:
|
|
297
|
-
"grid:
|
|
298
|
-
"grid:
|
|
299
|
-
"grid:
|
|
300
|
-
"grid:
|
|
301
|
-
"grid:
|
|
302
|
-
"grid:
|
|
303
|
-
"grid:
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
"
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
"
|
|
329
|
-
"
|
|
330
|
-
"
|
|
331
|
-
"vec:
|
|
332
|
-
"vec:
|
|
333
|
-
"vec:
|
|
334
|
-
"vec:
|
|
335
|
-
"vec:
|
|
336
|
-
"vec:
|
|
337
|
-
"vec:
|
|
338
|
-
"vec:
|
|
339
|
-
"vec:
|
|
340
|
-
"vec:
|
|
341
|
-
"vec:
|
|
342
|
-
"vec:
|
|
343
|
-
"vec:
|
|
344
|
-
"vec:
|
|
345
|
-
"vec:
|
|
346
|
-
"vec:
|
|
347
|
-
"vec:
|
|
348
|
-
"vec:
|
|
349
|
-
"vec:
|
|
350
|
-
"vec:
|
|
351
|
-
"vec:
|
|
352
|
-
"vec:
|
|
353
|
-
"vec:
|
|
354
|
-
"vec:
|
|
355
|
-
"vec:
|
|
356
|
-
"vec:
|
|
357
|
-
"vec:
|
|
358
|
-
"vec:
|
|
359
|
-
"vec:
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
"
|
|
368
|
-
"
|
|
369
|
-
"
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
"
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
"
|
|
379
|
-
"
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
"
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"
|
|
404
|
-
"
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
"
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
"
|
|
476
|
-
"
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
"
|
|
483
|
-
"
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"
|
|
502
|
-
"nth:
|
|
503
|
-
"nth:
|
|
504
|
-
"nth:
|
|
505
|
-
"nth:
|
|
506
|
-
"nth:
|
|
507
|
-
"nth:
|
|
508
|
-
"nth:
|
|
509
|
-
"nth:
|
|
510
|
-
"nth:
|
|
511
|
-
"nth:
|
|
512
|
-
"nth:
|
|
513
|
-
"nth:catalan
|
|
514
|
-
"nth:
|
|
515
|
-
"nth:
|
|
516
|
-
"nth:
|
|
517
|
-
"nth:
|
|
518
|
-
"nth:factorial-
|
|
519
|
-
"nth:factorial-nth": FunctionReference<"String" | "
|
|
520
|
-
"nth:factorial
|
|
521
|
-
"nth:
|
|
522
|
-
"nth:fibonacci-
|
|
523
|
-
"nth:fibonacci-nth": FunctionReference<"String" | "
|
|
524
|
-
"nth:fibonacci
|
|
525
|
-
"nth:
|
|
526
|
-
"nth:
|
|
527
|
-
"nth:
|
|
528
|
-
"nth:
|
|
529
|
-
"nth:
|
|
530
|
-
"nth:
|
|
531
|
-
"nth:
|
|
532
|
-
"nth:
|
|
533
|
-
"nth:
|
|
534
|
-
"nth:
|
|
535
|
-
"nth:
|
|
536
|
-
"nth:
|
|
537
|
-
"nth:
|
|
538
|
-
"nth:
|
|
539
|
-
"nth:
|
|
540
|
-
"nth:
|
|
541
|
-
"nth:
|
|
542
|
-
"nth:
|
|
543
|
-
"nth:
|
|
544
|
-
"nth:
|
|
545
|
-
"nth:
|
|
546
|
-
"nth:
|
|
547
|
-
"nth:
|
|
548
|
-
"nth:
|
|
549
|
-
"nth:
|
|
550
|
-
"nth:
|
|
551
|
-
"nth:
|
|
552
|
-
"nth:
|
|
553
|
-
"nth:
|
|
554
|
-
"nth:
|
|
555
|
-
"nth:
|
|
556
|
-
"nth:
|
|
557
|
-
"nth:
|
|
558
|
-
"nth:
|
|
559
|
-
"nth:
|
|
560
|
-
"nth:
|
|
561
|
-
"nth:
|
|
562
|
-
"nth:
|
|
563
|
-
"nth:
|
|
564
|
-
"nth:
|
|
565
|
-
"nth:
|
|
566
|
-
"nth:
|
|
567
|
-
"nth:
|
|
568
|
-
"nth:
|
|
569
|
-
"nth:
|
|
570
|
-
"nth:
|
|
571
|
-
"nth:
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"
|
|
587
|
-
"
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
592
|
-
"
|
|
593
|
-
"
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"
|
|
615
|
-
"
|
|
616
|
-
"
|
|
617
|
-
"
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
"
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
"
|
|
637
|
-
"
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
"
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
"
|
|
47
|
+
number: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
48
|
+
boolean: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
49
|
+
"^": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
50
|
+
"*": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
51
|
+
"/": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
52
|
+
"+": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
53
|
+
"-": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
54
|
+
"<<": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
55
|
+
">>": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
56
|
+
">>>": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
57
|
+
"++": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
58
|
+
"<": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
59
|
+
"<=": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
60
|
+
">": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
61
|
+
">=": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
62
|
+
"==": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
63
|
+
"!=": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
64
|
+
"&": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
65
|
+
xor: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
66
|
+
"|": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
67
|
+
"|>": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
68
|
+
min: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
69
|
+
max: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
70
|
+
match: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
71
|
+
replace: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
72
|
+
slice: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
73
|
+
split: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
74
|
+
trim: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
75
|
+
repeat: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
76
|
+
filter: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
77
|
+
filteri: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
78
|
+
map: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
79
|
+
mapi: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
80
|
+
reduce: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
81
|
+
reducei: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
82
|
+
"reduce-right": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
83
|
+
"reducei-right": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
84
|
+
reductions: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
85
|
+
reductionsi: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
86
|
+
count: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
87
|
+
get: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
88
|
+
"get-in": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
89
|
+
"contains?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
90
|
+
assoc: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
91
|
+
"assoc-in": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
92
|
+
"not-empty": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
93
|
+
"every?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
94
|
+
"not-every?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
95
|
+
"any?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
96
|
+
"not-any?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
97
|
+
update: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
98
|
+
"update-in": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
99
|
+
range: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
100
|
+
flatten: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
101
|
+
mapcat: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
102
|
+
"moving-fn": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
103
|
+
"running-fn": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
104
|
+
nth: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
105
|
+
push: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
106
|
+
pop: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
107
|
+
unshift: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
108
|
+
shift: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
109
|
+
splice: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
110
|
+
position: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
111
|
+
"index-of": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
112
|
+
"last-index-of": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
113
|
+
some: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
114
|
+
reverse: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
115
|
+
first: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
116
|
+
second: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
117
|
+
last: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
118
|
+
rest: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
119
|
+
next: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
120
|
+
take: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
121
|
+
"take-last": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
122
|
+
"take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
123
|
+
drop: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
124
|
+
"drop-last": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
125
|
+
"drop-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
126
|
+
sort: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
127
|
+
"sort-by": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
128
|
+
distinct: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
129
|
+
remove: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
130
|
+
"remove-at": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
131
|
+
"split-at": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
132
|
+
"split-with": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
133
|
+
frequencies: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
134
|
+
"group-by": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
135
|
+
partition: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
136
|
+
"partition-all": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
137
|
+
"partition-by": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
138
|
+
"starts-with?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
139
|
+
"ends-with?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
140
|
+
interleave: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
141
|
+
interpose: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
142
|
+
mod: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
143
|
+
rem: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
144
|
+
quot: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
145
|
+
inc: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
146
|
+
dec: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
147
|
+
sqrt: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
148
|
+
cbrt: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
149
|
+
round: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
150
|
+
trunc: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
151
|
+
floor: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
152
|
+
ceil: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
153
|
+
abs: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
154
|
+
sign: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
155
|
+
ln: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
156
|
+
log2: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
157
|
+
log10: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
158
|
+
sin: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
159
|
+
cos: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
160
|
+
tan: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
161
|
+
asin: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
162
|
+
acos: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
163
|
+
atan: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
164
|
+
sinh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
165
|
+
cosh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
166
|
+
tanh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
167
|
+
asinh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
168
|
+
acosh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
169
|
+
atanh: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
170
|
+
"to-rad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
171
|
+
"to-deg": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
172
|
+
apply: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
173
|
+
identity: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
174
|
+
comp: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
175
|
+
constantly: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
176
|
+
juxt: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
177
|
+
complement: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
178
|
+
"every-pred": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
179
|
+
"some-pred": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
180
|
+
fnull: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
181
|
+
doc: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
182
|
+
arity: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
183
|
+
"!": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
184
|
+
"write!": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
185
|
+
"iso-date->epoch": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
186
|
+
"epoch->iso-date": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
187
|
+
compare: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
188
|
+
"identical?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
189
|
+
"json-parse": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
190
|
+
"json-stringify": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
191
|
+
dissoc: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
192
|
+
keys: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
193
|
+
vals: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
194
|
+
entries: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
195
|
+
find: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
196
|
+
merge: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
197
|
+
"merge-with": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
198
|
+
zipmap: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
199
|
+
"select-keys": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
200
|
+
"boolean?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
201
|
+
"null?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
202
|
+
"number?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
203
|
+
"string?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
204
|
+
"function?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
205
|
+
"integer?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
206
|
+
"array?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
207
|
+
"object?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
208
|
+
"coll?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
209
|
+
"seq?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
210
|
+
"regexp?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
211
|
+
"zero?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
212
|
+
"pos?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
213
|
+
"neg?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
214
|
+
"even?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
215
|
+
"odd?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
216
|
+
"finite?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
217
|
+
"negative-infinity?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
218
|
+
"positive-infinity?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
219
|
+
"false?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
220
|
+
"true?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
221
|
+
"empty?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
222
|
+
"not-empty?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
223
|
+
"vector?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
224
|
+
"grid?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
225
|
+
"matrix?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
226
|
+
regexp: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
227
|
+
"replace-all": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
228
|
+
"string-repeat": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
229
|
+
str: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
230
|
+
"lower-case": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
231
|
+
"upper-case": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
232
|
+
"trim-left": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
233
|
+
"trim-right": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
234
|
+
"pad-left": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
235
|
+
"pad-right": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
236
|
+
"split-lines": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
237
|
+
template: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
238
|
+
"to-char-code": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
239
|
+
"from-char-code": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
240
|
+
"encode-base64": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
241
|
+
"decode-base64": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
242
|
+
"encode-uri-component": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
243
|
+
"decode-uri-component": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
244
|
+
join: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
245
|
+
capitalize: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
246
|
+
"blank?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
247
|
+
"bit-not": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
248
|
+
"bit-and-not": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
249
|
+
"bit-flip": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
250
|
+
"bit-clear": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
251
|
+
"bit-set": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
252
|
+
"bit-test": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
253
|
+
assert: FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
254
|
+
"assert=": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
255
|
+
"assert!=": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
256
|
+
"assert-gt": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
257
|
+
"assert-lt": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
258
|
+
"assert-gte": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
259
|
+
"assert-lte": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
260
|
+
"assert-true": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
261
|
+
"assert-false": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
262
|
+
"assert-truthy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
263
|
+
"assert-falsy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
264
|
+
"assert-null": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
265
|
+
"assert-throws": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
266
|
+
"assert-throws-error": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
267
|
+
"assert-not-throws": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
268
|
+
"grid:every?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
269
|
+
"grid:some?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
270
|
+
"grid:every-row?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
271
|
+
"grid:some-row?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
272
|
+
"grid:every-col?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
273
|
+
"grid:some-col?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
274
|
+
"grid:row": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
275
|
+
"grid:col": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
276
|
+
"grid:shape": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
277
|
+
"grid:fill": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
278
|
+
"grid:generate": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
279
|
+
"grid:reshape": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
280
|
+
"grid:transpose": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
281
|
+
"grid:flip-h": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
282
|
+
"grid:flip-v": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
283
|
+
"grid:rotate": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
284
|
+
"grid:reverse-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
285
|
+
"grid:reverse-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
286
|
+
"grid:slice": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
287
|
+
"grid:slice-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
288
|
+
"grid:slice-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
289
|
+
"grid:splice-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
290
|
+
"grid:splice-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
291
|
+
"grid:concat-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
292
|
+
"grid:concat-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
293
|
+
"grid:map": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
294
|
+
"grid:mapi": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
295
|
+
"grid:reduce": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
296
|
+
"grid:reducei": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
297
|
+
"grid:push-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
298
|
+
"grid:unshift-rows": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
299
|
+
"grid:pop-row": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
300
|
+
"grid:shift-row": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
301
|
+
"grid:push-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
302
|
+
"grid:unshift-cols": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
303
|
+
"grid:pop-col": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
304
|
+
"grid:shift-col": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
305
|
+
"grid:from-array": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
306
|
+
"mat:mul": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
307
|
+
"mat:det": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
308
|
+
"mat:inv": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
309
|
+
"mat:adj": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
310
|
+
"mat:cofactor": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
311
|
+
"mat:minor": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
312
|
+
"mat:trace": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
313
|
+
"mat:symmetric?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
314
|
+
"mat:triangular?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
315
|
+
"mat:upper-triangular?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
316
|
+
"mat:lower-triangular?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
317
|
+
"mat:diagonal?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
318
|
+
"mat:square?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
319
|
+
"mat:orthogonal?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
320
|
+
"mat:identity?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
321
|
+
"mat:invertible?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
322
|
+
"mat:hilbert": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
323
|
+
"mat:vandermonde": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
324
|
+
"mat:band": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
325
|
+
"mat:banded?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
326
|
+
"mat:rank": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
327
|
+
"mat:frobenius-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
328
|
+
"mat:1-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
329
|
+
"mat:inf-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
330
|
+
"mat:max-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
331
|
+
"vec:monotonic?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
332
|
+
"vec:strictly-monotonic?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
333
|
+
"vec:increasing?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
334
|
+
"vec:decreasing?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
335
|
+
"vec:strictly-increasing?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
336
|
+
"vec:strictly-decreasing?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
337
|
+
"vec:median": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
338
|
+
"vec:mode": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
339
|
+
"vec:min-index": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
340
|
+
"vec:max-index": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
341
|
+
"vec:sort-indices": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
342
|
+
"vec:count-values": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
343
|
+
"vec:linspace": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
344
|
+
"vec:ones": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
345
|
+
"vec:zeros": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
346
|
+
"vec:fill": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
347
|
+
"vec:generate": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
348
|
+
"vec:cumsum": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
349
|
+
"vec:cumprod": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
350
|
+
"vec:quartiles": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
351
|
+
"vec:percentile": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
352
|
+
"vec:quantile": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
353
|
+
"vec:histogram": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
354
|
+
"vec:ecdf": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
355
|
+
"vec:outliers?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
356
|
+
"vec:outliers": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
357
|
+
"vec:bincount": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
358
|
+
"vec:winsorize": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
359
|
+
"vec:mse": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
360
|
+
"vec:mae": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
361
|
+
"vec:rmse": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
362
|
+
"vec:smape": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
363
|
+
"vec:mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
364
|
+
"vec:moving-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
365
|
+
"vec:centered-moving-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
366
|
+
"vec:running-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
367
|
+
"vec:moving-median": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
368
|
+
"vec:centered-moving-median": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
369
|
+
"vec:running-median": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
370
|
+
"vec:variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
371
|
+
"vec:moving-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
372
|
+
"vec:centered-moving-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
373
|
+
"vec:running-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
374
|
+
"vec:sample-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
375
|
+
"vec:moving-sample-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
376
|
+
"vec:centered-moving-sample-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
377
|
+
"vec:running-sample-variance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
378
|
+
"vec:sum": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
379
|
+
"vec:moving-sum": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
380
|
+
"vec:centered-moving-sum": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
381
|
+
"vec:running-sum": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
382
|
+
"vec:prod": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
383
|
+
"vec:moving-prod": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
384
|
+
"vec:centered-moving-prod": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
385
|
+
"vec:running-prod": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
386
|
+
"vec:min": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
387
|
+
"vec:moving-min": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
388
|
+
"vec:centered-moving-min": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
389
|
+
"vec:running-min": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
390
|
+
"vec:max": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
391
|
+
"vec:moving-max": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
392
|
+
"vec:centered-moving-max": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
393
|
+
"vec:running-max": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
394
|
+
"vec:stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
395
|
+
"vec:moving-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
396
|
+
"vec:centered-moving-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
397
|
+
"vec:running-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
398
|
+
"vec:sample-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
399
|
+
"vec:moving-sample-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
400
|
+
"vec:centered-moving-sample-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
401
|
+
"vec:running-sample-stdev": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
402
|
+
"vec:iqr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
403
|
+
"vec:moving-iqr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
404
|
+
"vec:centered-moving-iqr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
405
|
+
"vec:running-iqr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
406
|
+
"vec:span": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
407
|
+
"vec:moving-span": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
408
|
+
"vec:centered-moving-span": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
409
|
+
"vec:running-span": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
410
|
+
"vec:geometric-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
411
|
+
"vec:moving-geometric-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
412
|
+
"vec:centered-moving-geometric-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
413
|
+
"vec:running-geometric-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
414
|
+
"vec:harmonic-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
415
|
+
"vec:moving-harmonic-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
416
|
+
"vec:centered-moving-harmonic-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
417
|
+
"vec:running-harmonic-mean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
418
|
+
"vec:skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
419
|
+
"vec:moving-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
420
|
+
"vec:centered-moving-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
421
|
+
"vec:running-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
422
|
+
"vec:sample-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
423
|
+
"vec:moving-sample-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
424
|
+
"vec:centered-moving-sample-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
425
|
+
"vec:running-sample-skewness": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
426
|
+
"vec:kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
427
|
+
"vec:moving-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
428
|
+
"vec:centered-moving-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
429
|
+
"vec:running-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
430
|
+
"vec:sample-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
431
|
+
"vec:moving-sample-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
432
|
+
"vec:centered-moving-sample-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
433
|
+
"vec:running-sample-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
434
|
+
"vec:excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
435
|
+
"vec:moving-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
436
|
+
"vec:centered-moving-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
437
|
+
"vec:running-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
438
|
+
"vec:sample-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
439
|
+
"vec:moving-sample-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
440
|
+
"vec:centered-moving-sample-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
441
|
+
"vec:running-sample-excess-kurtosis": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
442
|
+
"vec:rms": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
443
|
+
"vec:moving-rms": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
444
|
+
"vec:centered-moving-rms": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
445
|
+
"vec:running-rms": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
446
|
+
"vec:mad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
447
|
+
"vec:moving-mad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
448
|
+
"vec:centered-moving-mad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
449
|
+
"vec:running-mad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
450
|
+
"vec:medad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
451
|
+
"vec:moving-medad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
452
|
+
"vec:centered-moving-medad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
453
|
+
"vec:running-medad": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
454
|
+
"vec:gini-coefficient": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
455
|
+
"vec:moving-gini-coefficient": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
456
|
+
"vec:centered-moving-gini-coefficient": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
457
|
+
"vec:running-gini-coefficient": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
458
|
+
"vec:entropy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
459
|
+
"vec:moving-entropy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
460
|
+
"vec:centered-moving-entropy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
461
|
+
"vec:running-entropy": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
462
|
+
"lin:reflect": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
463
|
+
"lin:refract": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
464
|
+
"lin:lerp": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
465
|
+
"lin:rotate2d": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
466
|
+
"lin:rotate3d": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
467
|
+
"lin:dot": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
468
|
+
"lin:cross": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
469
|
+
"lin:normalize-minmax": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
470
|
+
"lin:normalize-zscore": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
471
|
+
"lin:normalize-robust": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
472
|
+
"lin:normalize-l1": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
473
|
+
"lin:normalize-l2": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
474
|
+
"lin:normalize-log": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
475
|
+
"lin:angle": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
476
|
+
"lin:projection": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
477
|
+
"lin:orthogonal?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
478
|
+
"lin:parallel?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
479
|
+
"lin:collinear?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
480
|
+
"lin:cosine-similarity": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
481
|
+
"lin:euclidean-distance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
482
|
+
"lin:euclidean-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
483
|
+
"lin:manhattan-distance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
484
|
+
"lin:manhattan-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
485
|
+
"lin:hamming-distance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
486
|
+
"lin:hamming-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
487
|
+
"lin:chebyshev-distance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
488
|
+
"lin:chebyshev-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
489
|
+
"lin:minkowski-distance": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
490
|
+
"lin:minkowski-norm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
491
|
+
"lin:cov": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
492
|
+
"lin:corr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
493
|
+
"lin:spearman-corr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
494
|
+
"lin:pearson-corr": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
495
|
+
"lin:kendall-tau": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
496
|
+
"lin:autocorrelation": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
497
|
+
"lin:cross-correlation": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
498
|
+
"lin:rref": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
499
|
+
"lin:solve": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
500
|
+
"lin:to-polar": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
501
|
+
"lin:from-polar": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
502
|
+
"nth:abundant-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
503
|
+
"nth:abundant-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
504
|
+
"nth:abundant-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
505
|
+
"nth:abundant?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
506
|
+
"nth:bell-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
507
|
+
"nth:bell-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
508
|
+
"nth:bell-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
509
|
+
"nth:bell?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
510
|
+
"nth:catalan-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
511
|
+
"nth:catalan-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
512
|
+
"nth:catalan-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
513
|
+
"nth:catalan?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
514
|
+
"nth:composite-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
515
|
+
"nth:composite-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
516
|
+
"nth:composite-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
517
|
+
"nth:composite?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
518
|
+
"nth:factorial-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
519
|
+
"nth:factorial-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
520
|
+
"nth:factorial-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
521
|
+
"nth:factorial?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
522
|
+
"nth:fibonacci-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
523
|
+
"nth:fibonacci-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
524
|
+
"nth:fibonacci-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
525
|
+
"nth:fibonacci?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
526
|
+
"nth:geometric-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
527
|
+
"nth:geometric-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
528
|
+
"nth:geometric-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
529
|
+
"nth:geometric?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
530
|
+
"nth:golomb-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
531
|
+
"nth:golomb-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
532
|
+
"nth:golomb-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
533
|
+
"nth:golomb?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
534
|
+
"nth:happy-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
535
|
+
"nth:happy-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
536
|
+
"nth:happy-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
537
|
+
"nth:happy?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
538
|
+
"nth:look-and-say-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
539
|
+
"nth:look-and-say-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
540
|
+
"nth:look-and-say-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
541
|
+
"nth:look-and-say?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
542
|
+
"nth:lucas-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
543
|
+
"nth:lucas-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
544
|
+
"nth:lucas-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
545
|
+
"nth:lucas?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
546
|
+
"nth:lucky-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
547
|
+
"nth:lucky-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
548
|
+
"nth:lucky-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
549
|
+
"nth:lucky?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
550
|
+
"nth:mersenne-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
551
|
+
"nth:mersenne-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
552
|
+
"nth:mersenne-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
553
|
+
"nth:mersenne?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
554
|
+
"nth:padovan-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
555
|
+
"nth:padovan-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
556
|
+
"nth:padovan-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
557
|
+
"nth:padovan?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
558
|
+
"nth:partition-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
559
|
+
"nth:partition-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
560
|
+
"nth:partition-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
561
|
+
"nth:partition?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
562
|
+
"nth:pell-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
563
|
+
"nth:pell-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
564
|
+
"nth:pell-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
565
|
+
"nth:pell?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
566
|
+
"nth:perfect-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
567
|
+
"nth:perfect-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
568
|
+
"nth:perfect-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
569
|
+
"nth:perfect?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
570
|
+
"nth:perfect-cube-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
571
|
+
"nth:perfect-cube-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
572
|
+
"nth:perfect-cube-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
573
|
+
"nth:perfect-cube?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
574
|
+
"nth:perfect-power-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
575
|
+
"nth:perfect-power-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
576
|
+
"nth:perfect-power-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
577
|
+
"nth:perfect-power?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
578
|
+
"nth:perfect-square-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
579
|
+
"nth:perfect-square-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
580
|
+
"nth:perfect-square-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
581
|
+
"nth:perfect-square?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
582
|
+
"nth:polygonal-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
583
|
+
"nth:polygonal-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
584
|
+
"nth:polygonal-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
585
|
+
"nth:polygonal?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
586
|
+
"nth:prime-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
587
|
+
"nth:prime-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
588
|
+
"nth:prime-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
589
|
+
"nth:prime?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
590
|
+
"nth:recaman-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
591
|
+
"nth:recaman-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
592
|
+
"nth:recaman-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
593
|
+
"nth:recaman?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
594
|
+
"nth:sylvester-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
595
|
+
"nth:sylvester-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
596
|
+
"nth:sylvester-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
597
|
+
"nth:sylvester?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
598
|
+
"nth:thue-morse-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
599
|
+
"nth:thue-morse-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
600
|
+
"nth:thue-morse-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
601
|
+
"nth:thue-morse?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
602
|
+
"nth:tribonacci-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
603
|
+
"nth:tribonacci-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
604
|
+
"nth:tribonacci-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
605
|
+
"nth:tribonacci?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
606
|
+
"nth:collatz-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
607
|
+
"nth:juggler-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
608
|
+
"nth:bernoulli-seq": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
609
|
+
"nth:bernoulli-take-while": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
610
|
+
"nth:bernoulli-nth": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
611
|
+
"nth:combinations": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
612
|
+
"nth:count-combinations": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
613
|
+
"nth:derangements": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
614
|
+
"nth:count-derangements": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
615
|
+
"nth:divisors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
616
|
+
"nth:count-divisors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
617
|
+
"nth:proper-divisors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
618
|
+
"nth:count-proper-divisors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
619
|
+
"nth:prime-factors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
620
|
+
"nth:count-prime-factors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
621
|
+
"nth:distinct-prime-factors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
622
|
+
"nth:count-distinct-prime-factors": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
623
|
+
"nth:factorial": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
624
|
+
"nth:partitions": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
625
|
+
"nth:count-partitions": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
626
|
+
"nth:permutations": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
627
|
+
"nth:count-permutations": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
628
|
+
"nth:power-set": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
629
|
+
"nth:count-power-set": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
630
|
+
"nth:coprime?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
631
|
+
"nth:divisible-by?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
632
|
+
"nth:gcd": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
633
|
+
"nth:lcm": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
634
|
+
"nth:multinomial": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
635
|
+
"nth:amicable?": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
636
|
+
"nth:euler-totient": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
637
|
+
"nth:mobius": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
638
|
+
"nth:mertens": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
639
|
+
"nth:sigma": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
640
|
+
"nth:carmichael-lambda": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
641
|
+
"nth:cartesian-product": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
642
|
+
"nth:perfect-power": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
643
|
+
"nth:mod-exp": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
644
|
+
"nth:mod-inv": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
645
|
+
"nth:extended-gcd": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
646
|
+
"nth:chinese-remainder": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
647
|
+
"nth:stirling-first": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
648
|
+
"nth:stirling-second": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
649
|
+
"!:random": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
650
|
+
"!:random-int": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
651
|
+
"!:random-int-inclusive": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
652
|
+
"!:random-float": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
653
|
+
"!:random-boolean": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
654
|
+
"!:random-item": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
655
|
+
"!:random-sample": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
656
|
+
"!:random-sample-unique": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
657
|
+
"!:shuffle": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
658
|
+
"!:random-normal": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
659
|
+
"!:random-exponential": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
660
|
+
"!:random-binomial": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
661
|
+
"!:random-poisson": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
662
|
+
"!:random-gamma": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
663
|
+
"!:random-pareto": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
664
|
+
"!:uuid": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
665
|
+
"!:random-char": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
666
|
+
"!:random-string": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
667
|
+
"!:random-id": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
668
|
+
"!:random-color": FunctionReference<"String" | "Special expression" | "Predicate" | "Sequence" | "Collection" | "Array" | "Object" | "Math" | "Functional" | "Regular expression" | "Bitwise" | "Misc" | "Meta" | "Assert" | "Vector" | "Linear Algebra" | "Matrix" | "Grid" | "Number Theory" | "Random" | "Shorthand" | "Datatype">;
|
|
667
669
|
};
|
|
668
670
|
export declare const apiReference: Record<ApiName, Reference>;
|
|
669
671
|
export declare function getLinkName(reference: Reference): string;
|