Method: List#initialize

Defined in:
lib/p6/list.rb

#initializeList

Constructor de la clase Lista



10
11
12
13
14
# File 'lib/p6/list.rb', line 10

def initialize()
  @size = 0
  @head = nil
  @tail = nil
end