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