# File lib/extlib/lazy_array.rb, line 217
  def pop
    if lazy_possible?(@tail)
      @tail.pop
    else
      lazy_load
      @array.pop
    end
  end