# File lib/hashery/sparsearray.rb, line 514 def to_a a = [] (0..self.length-1).each { |i| a << self.fetch(i) } a end