cons(head, tail)
Cons a new head onto the tail list.
# File lib/rake/linked_list.rb, line 70 def self.cons(head, tail) new(head, tail) end