# File lib/more/facets/linkedlist.rb, line 152 def to_a r = [] n = @head while (n = n.next_node) and n != @tail r << n.value end r end