UMG: Repeat an object for each element in an array / Bind to array

I am a big fan of data binding and model view controller separation, and I was wondering if there is any way in UMG to repeat an object for each element in an array.

For example, I have an array of Sessions and I want to build a server browser window. I need to display a row for each element in the array, but instead of manually iterating through and creating widgets I was wondering if there was a way to bind a UMG widget to repeat itself for each element in an array and update automatically, or if there is something like this planned in the future.

I’m trying to achieve what I can do with ng-repeat in AngularJS, or an ItemsControl bound to a list in WPF for example.

Thanks.