# File lib/hashery/linked_list.rb, line 46 def initialize @head = Node.new @tail = Node.new @lookup = Hash.new node_join(@head,@tail) end