Is there some built in predicate or easy way to move the last element in a list to the front? The only way I've come up with is a predicate that stores the last element, deletes it from the original list, and then doing append(Last Elem, Original List, New List) which is a bit cumbersome.
0
votes