#### Describe your feature request It'd be nice if we could zero-copy to/from [apache arrow](https://www.npmjs.com/package/apache-arrow) tables. ```ts arrowTable = df.toArrow(); df = pl.fromArrow(arrowTable); arrowVector = series.toArrow(); series = Series.fromArrow(arrowVector) ```