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