-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwasm-coverage.json
More file actions
756 lines (756 loc) · 27.3 KB
/
Copy pathwasm-coverage.json
File metadata and controls
756 lines (756 loc) · 27.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
{
"version": "1",
"description": "Rust/WASM acceleration coverage manifest for tsb core functions",
"notes": "Every value export from src/core/index.ts is classified as either rust-wasm (implemented in Rust, exported through WASM, wired into the accelerated path) or ts-only-ineligible (not suitable for Rust/WASM with a concrete reason). There are no unclassified or todo entries.",
"entries": [
{
"name": "natCompare",
"module": "core/natsort",
"status": "rust-wasm",
"wasm_function": "nat_compare",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-natsort"
},
{
"name": "natSorted",
"module": "core/natsort",
"status": "rust-wasm",
"wasm_function": "nat_sorted",
"notes": "Accelerated path covers string arrays without a key function. Calls with a key function fall back to the TypeScript implementation automatically.",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-natsort"
},
{
"name": "natArgSort",
"module": "core/natsort",
"status": "rust-wasm",
"wasm_function": "nat_argsort",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-natsort"
},
{
"name": "natSortKey",
"module": "core/natsort",
"status": "ts-only-ineligible",
"reason": "Return type is readonly (string|number)[] — a JS-specific union array that has no direct WASM representation without per-element boxing. The resulting round-trip cost would likely exceed any benefit."
},
{
"name": "searchsorted",
"module": "core/searchsorted",
"status": "rust-wasm",
"wasm_function": "searchsorted_f64 / searchsorted_str",
"notes": "Accelerated path covers numeric (f64) and string arrays with the default comparator. Calls with a custom compareFn or a sorter fall back to TypeScript automatically.",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-searchsorted"
},
{
"name": "searchsortedMany",
"module": "core/searchsorted",
"status": "rust-wasm",
"wasm_function": "searchsorted_many_f64 / searchsorted_many_str",
"notes": "Same fallback conditions as searchsorted.",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-searchsorted"
},
{
"name": "argsortScalars",
"module": "core/searchsorted",
"status": "rust-wasm",
"wasm_function": "argsort_f64 / argsort_str",
"notes": "Accelerated path covers numeric and string arrays with the default comparator. Custom compareFn falls back to TypeScript.",
"parity_test": "tests/wasm/parity.test.ts",
"benchmark_group": "wasm-searchsorted"
},
{
"name": "Index",
"module": "core/base-index",
"status": "ts-only-ineligible",
"reason": "Complex JS class with JS-specific semantics: symbol-keyed properties, JS object identity, generator methods, and deep integration with the JS iterator protocol. All label-lookup logic depends on JS Map/Set identity."
},
{
"name": "RangeIndex",
"module": "core/range-index",
"status": "ts-only-ineligible",
"reason": "Inherits from Index (JS class). Its primary value is lazy range generation using JS generators. No CPU-heavy numeric kernel to accelerate independently of the class."
},
{
"name": "Dtype",
"module": "core/dtype",
"status": "ts-only-ineligible",
"reason": "JS class whose instances are used as JS runtime type tokens. Equality is checked via JS object identity. Cannot be serialised to/from WASM without losing identity semantics."
},
{
"name": "Series",
"module": "core/series",
"status": "ts-only-ineligible",
"reason": "High-level JS class whose methods accept arbitrary JS callbacks, return new Series instances, and interoperate with JS accessors, Index objects, and the extension registry. Porting at the class level would require replacing the entire TS implementation."
},
{
"name": "DataFrame",
"module": "core/frame",
"status": "ts-only-ineligible",
"reason": "Same as Series: high-level JS class with arbitrary JS callbacks, JS accessors, rolling/expanding/ewm subclasses, and deep interoperation with Series and Index."
},
{
"name": "DataFrameRolling",
"module": "core/frame",
"status": "ts-only-ineligible",
"reason": "Inner class of DataFrame; window computation returns new DataFrame/Series instances and accepts JS callbacks."
},
{
"name": "DataFrameExpanding",
"module": "core/frame",
"status": "ts-only-ineligible",
"reason": "Inner class of DataFrame; same reasoning as DataFrameRolling."
},
{
"name": "DataFrameEwm",
"module": "core/frame",
"status": "ts-only-ineligible",
"reason": "Inner class of DataFrame; exponentially weighted window — depends on JS class state and returns DataFrame/Series."
},
{
"name": "StringAccessor",
"module": "core/string_accessor",
"status": "ts-only-ineligible",
"reason": "JS accessor class exposing string operations that use JS regex and Intl APIs internally. Many operations have no WASM equivalent without reimplementing the JS Unicode/Intl stack."
},
{
"name": "DatetimeAccessor",
"module": "core/datetime_accessor",
"status": "ts-only-ineligible",
"reason": "Wraps JS Date arithmetic and timezone conversions. Correctness depends on the JS Temporal/Intl system which cannot be reproduced from WASM without calling back into JS."
},
{
"name": "CategoricalAccessor",
"module": "core/cat_accessor",
"status": "ts-only-ineligible",
"reason": "JS accessor that manages a categorical code/categories array pair stored as JS arrays with JS object identity. No isolated numeric kernel."
},
{
"name": "MultiIndex",
"module": "core/multi_index",
"status": "ts-only-ineligible",
"reason": "JS class holding multiple JS Index objects; label lookup uses JS Map with tuple keys represented as strings. Deep JS-identity dependency."
},
{
"name": "Interval",
"module": "core/interval",
"status": "ts-only-ineligible",
"reason": "JS class whose endpoints can be arbitrary Scalar values (including JS Date and Timedelta instances). Cannot be serialised to WASM without losing JS object semantics."
},
{
"name": "IntervalIndex",
"module": "core/interval",
"status": "ts-only-ineligible",
"reason": "Inherits from Index; holds Interval instances. Same JS-identity constraint as Interval."
},
{
"name": "CategoricalIndex",
"module": "core/categorical_index",
"status": "ts-only-ineligible",
"reason": "JS class for categorical index labels; depends on JS Map/Set identity for deduplication."
},
{
"name": "Period",
"module": "core/period",
"status": "ts-only-ineligible",
"reason": "JS class wrapping a period value with frequency metadata. Arithmetic calls JS Date methods and the date-offset registry."
},
{
"name": "PeriodIndex",
"module": "core/period",
"status": "ts-only-ineligible",
"reason": "Holds Period instances; inherits from Index. Same JS-identity dependency as Period."
},
{
"name": "Timedelta",
"module": "core/timedelta",
"status": "ts-only-ineligible",
"reason": "JS class wrapping a duration in milliseconds plus component accessors. Arithmetic depends on JS Date. No isolated WASM-friendly kernel."
},
{
"name": "TimedeltaIndex",
"module": "core/timedelta",
"status": "ts-only-ineligible",
"reason": "Holds Timedelta instances; inherits from Index. Same JS dependency as Timedelta."
},
{
"name": "timedelta_range",
"module": "core/timedelta_range",
"status": "ts-only-ineligible",
"reason": "Generates a TimedeltaIndex using JS Date arithmetic. Output is a JS class instance array."
},
{
"name": "Day",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; applies/rolls dates using JS Date. Cannot function independently of the JS date system."
},
{
"name": "Hour",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as Day."
},
{
"name": "Minute",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as Day."
},
{
"name": "Second",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as Day."
},
{
"name": "Milli",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as Day."
},
{
"name": "Week",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as Day."
},
{
"name": "MonthEnd",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; end-of-month rollforward requires JS Date.setFullYear/setMonth."
},
{
"name": "MonthBegin",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as MonthEnd."
},
{
"name": "YearEnd",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as MonthEnd."
},
{
"name": "YearBegin",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; same reasoning as MonthEnd."
},
{
"name": "BusinessDay",
"module": "core/date_offset",
"status": "ts-only-ineligible",
"reason": "JS DateOffset subclass; business-day skipping requires day-of-week arithmetic via JS Date."
},
{
"name": "DatetimeIndex",
"module": "core/date_range",
"status": "ts-only-ineligible",
"reason": "Holds JS Date timestamps; inherits from Index. All construction and arithmetic uses JS Date APIs."
},
{
"name": "date_range",
"module": "core/date_range",
"status": "ts-only-ineligible",
"reason": "Returns a DatetimeIndex generated by iterated JS Date arithmetic with date-offset objects."
},
{
"name": "bdate_range",
"module": "core/date_range",
"status": "ts-only-ineligible",
"reason": "Business-day date range; depends on JS Date weekday computation and the DateOffset registry."
},
{
"name": "resolveFreq",
"module": "core/date_range",
"status": "ts-only-ineligible",
"reason": "Parses a frequency string and returns a JS DateOffset instance from the runtime registry."
},
{
"name": "TZDatetimeIndex",
"module": "core/datetime_tz",
"status": "ts-only-ineligible",
"reason": "Holds timezone-aware JS Date values; localisation and conversion delegate entirely to the JS Intl.DateTimeFormat API."
},
{
"name": "tz_localize",
"module": "core/datetime_tz",
"status": "ts-only-ineligible",
"reason": "Creates a TZDatetimeIndex using JS Intl APIs; cannot run inside WASM."
},
{
"name": "tz_convert",
"module": "core/datetime_tz",
"status": "ts-only-ineligible",
"reason": "Converts between timezones via JS Intl.DateTimeFormat; same Intl dependency as tz_localize."
},
{
"name": "Timestamp",
"module": "core/timestamp",
"status": "ts-only-ineligible",
"reason": "JS wrapper around a nanosecond-precision timestamp. Format and parse operations delegate to JS Intl and Date. Object identity used throughout tsb's datetime pipeline."
},
{
"name": "dataFrameAssign",
"module": "core/assign",
"status": "ts-only-ineligible",
"reason": "Accepts an AssignSpec object whose values can be arbitrary JS functions (column transformers). Cannot be represented in WASM without callback round-trips."
},
{
"name": "reindexSeries",
"module": "core/reindex",
"status": "ts-only-ineligible",
"reason": "Operates on Series and Index JS class instances; fill methods (ffill/bfill) are JS-level operations on the resulting arrays. Porting requires migrating the entire Series/Index stack."
},
{
"name": "reindexDataFrame",
"module": "core/reindex",
"status": "ts-only-ineligible",
"reason": "Same as reindexSeries; additionally accepts optional fill_value which may be a JS object."
},
{
"name": "alignSeries",
"module": "core/align",
"status": "ts-only-ineligible",
"reason": "Returns a pair of re-indexed Series instances; depends entirely on JS class instances and the reindex pipeline."
},
{
"name": "alignDataFrame",
"module": "core/align",
"status": "ts-only-ineligible",
"reason": "Same as alignSeries for DataFrames."
},
{
"name": "insertColumn",
"module": "core/insert_pop",
"status": "ts-only-ineligible",
"reason": "Mutates a DataFrame JS object's column map. The DataFrame is a live JS instance; mutation is an in-place JS operation with no WASM-amenable equivalent."
},
{
"name": "popColumn",
"module": "core/insert_pop",
"status": "ts-only-ineligible",
"reason": "Same as insertColumn; removes a column from the DataFrame's internal JS Map."
},
{
"name": "reorderColumns",
"module": "core/insert_pop",
"status": "ts-only-ineligible",
"reason": "Reorders the JS Map entries in a DataFrame; depends on JS object mutation."
},
{
"name": "moveColumn",
"module": "core/insert_pop",
"status": "ts-only-ineligible",
"reason": "Combines reorder and insert; same JS object mutation dependency."
},
{
"name": "dataFrameFromPairs",
"module": "core/insert_pop",
"status": "ts-only-ineligible",
"reason": "Constructs a DataFrame from an array of [label, Series] pairs; returns a new JS DataFrame instance."
},
{
"name": "toDictOriented",
"module": "core/to_from_dict",
"status": "ts-only-ineligible",
"reason": "Serialises a DataFrame to a plain JS object with arbitrary key/value structure. Output type is a JS Record whose shape depends on the orient parameter."
},
{
"name": "fromDictOriented",
"module": "core/to_from_dict",
"status": "ts-only-ineligible",
"reason": "Deserialises a plain JS object to a DataFrame; input is an untyped JS object whose structure varies by orient."
},
{
"name": "getAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Returns a reference to the JS Attrs object (plain Record). Semantics are based on JS object identity; no numeric computation involved."
},
{
"name": "setAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Sets the attrs object on a Series/DataFrame using JS object identity. Pure JS metadata operation."
},
{
"name": "updateAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Merges an attrs object using Object.assign semantics; pure JS."
},
{
"name": "copyAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Shallow-copies an attrs Record; pure JS object operation."
},
{
"name": "withAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Returns a new Series/DataFrame with updated attrs; depends on JS class constructor."
},
{
"name": "clearAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Removes the attrs property; pure JS object mutation."
},
{
"name": "hasAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Checks for the attrs property presence; pure JS property check."
},
{
"name": "getAttr",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Key-value lookup in a JS object; pure JS property access."
},
{
"name": "setAttr",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Key-value write in a JS object; pure JS property mutation."
},
{
"name": "deleteAttr",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Deletes a key from a JS object; pure JS property mutation."
},
{
"name": "attrsCount",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Counts keys in a JS object using Object.keys; pure JS."
},
{
"name": "attrsKeys",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Returns Object.keys of a JS object; pure JS."
},
{
"name": "mergeAttrs",
"module": "core/attrs",
"status": "ts-only-ineligible",
"reason": "Merges two attrs Records using spread; pure JS object operation."
},
{
"name": "pipe",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Applies an arbitrary JS function to a value; callback semantics make WASM acceleration impossible without JS callback round-trips."
},
{
"name": "seriesApply",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Maps an arbitrary JS function over Series elements. Each invocation crosses the JS/WASM boundary per element; net cost would exceed benefit."
},
{
"name": "seriesTransform",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Same as seriesApply; accepts a JS callback that must run in the JS context."
},
{
"name": "dataFrameApply",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Applies a JS callback across DataFrame rows/columns. Callback semantics prevent WASM acceleration."
},
{
"name": "dataFrameApplyMap",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Element-wise JS callback across DataFrame cells; same boundary-crossing argument."
},
{
"name": "dataFrameTransform",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "JS callback transform on DataFrame; same reasoning as dataFrameApply."
},
{
"name": "dataFrameTransformRows",
"module": "core/pipe_apply",
"status": "ts-only-ineligible",
"reason": "Row-wise JS callback transform; same reasoning."
},
{
"name": "isScalar",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "JS runtime type predicate that checks typeof, instanceof (Date, Timedelta), and symbol properties. No WASM-friendly primitive representation."
},
{
"name": "isListLike",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks for JS iterable/array-like protocol using Symbol.iterator; JS-specific duck-typing check."
},
{
"name": "isArrayLike",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks for JS .length property; pure JS duck-typing."
},
{
"name": "isDictLike",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks for a plain JS object with key/value access; JS-specific pattern."
},
{
"name": "isIterator",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks for the JS iterator protocol (Symbol.iterator + .next); JS-specific."
},
{
"name": "isNumber",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "typeof check; trivial JS predicate, no WASM benefit."
},
{
"name": "isBool",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "typeof check; trivial JS predicate."
},
{
"name": "isStringValue",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "typeof check; trivial JS predicate."
},
{
"name": "isFloat",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Number.isFinite check; trivial JS predicate."
},
{
"name": "isInteger",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Number.isInteger check; trivial JS predicate."
},
{
"name": "isBigInt",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "typeof check; trivial JS predicate."
},
{
"name": "isRegExp",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "instanceof RegExp check; JS-specific."
},
{
"name": "isReCompilable",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks whether a value can be used as a RegExp source; JS-specific."
},
{
"name": "isMissing",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "null/undefined check; trivial JS predicate."
},
{
"name": "isHashable",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks whether a value can be used as a JS Map key; JS-specific identity semantics."
},
{
"name": "isDate",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "instanceof Date check; JS-specific."
},
{
"name": "isNumericDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Checks whether a Dtype JS class instance represents a numeric kind; depends on JS class identity."
},
{
"name": "isIntegerDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check; same reasoning as isNumericDtype."
},
{
"name": "isSignedIntegerDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isUnsignedIntegerDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isFloatDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isBoolDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isStringDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isDatetimeDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isTimedeltaDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isCategoricalDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isObjectDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isComplexDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isExtensionArrayDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check using instanceof with ExtensionDtype."
},
{
"name": "isPeriodDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "isIntervalDtype",
"module": "core/api_types",
"status": "ts-only-ineligible",
"reason": "Dtype JS class instance check."
},
{
"name": "astypeSeries",
"module": "core/astype",
"status": "ts-only-ineligible",
"reason": "Type-casts a Series using a Dtype JS instance; depends on JS class hierarchy, optional custom converters (JS callbacks), and returns a new Series instance."
},
{
"name": "astype",
"module": "core/astype",
"status": "ts-only-ineligible",
"reason": "Same as astypeSeries; additionally handles DataFrame column-wise coercions."
},
{
"name": "castScalar",
"module": "core/astype",
"status": "ts-only-ineligible",
"reason": "Casts a single Scalar value to a target Dtype; the cast table is defined by JS Dtype class instances and includes JS Date and BigInt conversions."
},
{
"name": "ExtensionDtype",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Abstract JS base class for the extension type system. Instances are registered in a runtime JS Map. No numeric kernel; purely a JS polymorphism mechanism."
},
{
"name": "ExtensionArray",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Abstract JS base class for extension array types. Subclasses implement custom JS accessors. No WASM-accelerable kernel."
},
{
"name": "registerExtensionDtype",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Registers a JS class constructor in a runtime registry Map; pure JS dynamic dispatch mechanism."
},
{
"name": "constructExtensionDtypeFromString",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Looks up a registered ExtensionDtype constructor by string name and calls it; JS runtime dispatch."
},
{
"name": "registerSeriesAccessor",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Installs a JS getter on the Series prototype; JS runtime prototype mutation."
},
{
"name": "registerDataFrameAccessor",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Same as registerSeriesAccessor for DataFrame."
},
{
"name": "registerIndexAccessor",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Same as registerSeriesAccessor for Index."
},
{
"name": "getRegisteredAccessors",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Returns the current state of the accessor registry (a JS Map); pure JS runtime introspection."
},
{
"name": "apiExtensions",
"module": "core/extensions",
"status": "ts-only-ineligible",
"reason": "Namespace object bundling the extension API; not a function, purely a JS namespace accessor."
}
],
"summary": {
"total_core_entries": 121,
"rust_wasm": 6,
"ts_only_ineligible": 115,
"unclassified": 0,
"eligible_missing": 0
}
}