# File lib/facets/more/linkedlist.rb, line 77
        def initialize
                @head = Node.new
                @tail = Node.new
                @lookup = Hash.new
                node_join(@head,@tail)
        end