# File lib/extlib/lazy_array.rb, line 171 def <<(entry) if loaded? lazy_load @array << entry else @tail << entry end self end