# File lib/core/facets/indexable.rb, line 138
  def last(n=1)
    n = n.to_i
    return self if n > size
    slice(-n, n) #slice(-n..-1)
  end