On Monday, 7 December 2020 at 06:18:33 UTC, mw wrote:
Now, how to convert it to a native array:double[] row = record;Error: cannot implicitly convert expression record of type Tuple!(double, double, double, ..., double) to double[](I know for tuple, we can do: double[] arr = [record];)
double[] row = [record.expand];
