list_tail


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)

.

Examples:


list_tail([1,2,3,4,5], 3)
// [4, 5]
      

Also see:

drop
take


Core Module Index | Contents