# File lib/hashery/linked_list.rb, line 109
    def shift
      k = @head.next_node.key
      n = @lookup.delete(k)
      node_delete(n) if n
    end