list_tail(xs, n)
Return the nth (zero based) tail of the list xs. List_tail will raise an error if n is not in 0 <= n < length(xs)
n
xs
List_tail
0 <= n < length(xs)
list_tail([1,2,3,4,5], 3) // [4, 5]
Core Module Index | Contents