Is there a better way to loop through all elements of a datatable?

Of course in C++, you can still use iterators to loop through std::map elements, so maybe we’d either need to alter the ForEach node to also accept maps in additions to arrays, or we could add a DataTable node that gets the table as an array.

The use case here is: I have a DataTable with an unknown number of elements coming in from the CSV file (and can change at any time), and then I’d like to populate a ScrollBox with all the elements to show them in a UI.

The way I set it up above works just fine for those purposes, but it’s less elegant than having some dedicated node functionality to handle iterating through.