Skip to content

room_list: Use get index instead of using nth

Dave Patrick requested to merge SeaDve/fractal:fractal-next into fractal-next

It is a bit faster on larger collections since nth calls next on every item until it becomes None, while get_index is similar to a Vec's get method

Merge request reports