# File lib/backports/1.9.2/array.rb, line 71
  def rotate!(n=1)
    n = Backports.coerce_to_int(n) % (empty? ? 1 : size)
    concat(shift(n))
  end