# File lib/more/facets/linkedlist.rb, line 165 def each n = @head while (n = n.next_node) and n != @tail yield(n.key,n.value) end end