# File lib/hashery/linked_list.rb, line 181 def to_a r = [] n = @head while (n = n.next_node) and n != @tail r << n.value end r end