method

new

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: LinkedList
new(head, tail=EMPTY) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/linked_list.rb, line 10
    def initialize(head, tail=EMPTY)
      @head = head
      @tail = tail
    end
Register or log in to add new notes.