Loading tsb runtime…
pdArray(data, dtype?) — create a typed array, mirroring
pandas.array().
When no dtype is passed, pdArray infers the best
dtype from the data: integers → "int64", floats →
"float64", booleans → "bool", strings →
"string", Dates → "datetime".
Pass a dtype string to override inference.
null or undefined are treated as NA and preserved in the array.
PandasArray implements the iterator protocol — use for...of or spread.