klyn.collections.LinkedListSync.reverseNew
method
public native reverseNew() as LinkedListSync<T>
Description

Returns a new reversed list without modifying this list.

data = ls:[1, 2, 3]
print(data.reverseNew())  # ls:[3, 2, 1]
Returns

A reversed LinkedListSync containing the same elements.