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