Reverse list

I want to reverse this list but it seems it does not reverse it. any ideas??

Thank you :slight_smile:

That is not a list. That is a data tree. A data tree is a list of lists. Reverse by itself will reverse the items in each list of a data tree but wont change the positions of the lists within the tree.
See the difference here and how to do it on the tree:


reverse.gh (15.5 KB)

yep, so true!! thank you…