I\'m looking for an elegant way to get a slice of a list from element n onwards without having to specify the length of the list. Lets say we have a multiline string which I spl
get last 2 elements:
List(1,2,3,4,5).reverseIterator.take(2)