# File lib/hashery/linked_list.rb, line 203
    def each
      n = @head
      while (n = n.next_node) and n != @tail
        yield(n.key,n.value)
      end
    end