public native reverseNew() as LinkedListSync<T>
Returns a new reversed list without modifying this list.
data = ls:[1, 2, 3] print(data.reverseNew()) # ls:[3, 2, 1]
A reversed LinkedListSync containing the same elements.