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