Class: Node

Inherits:
Struct
  • Object
show all
Defined in:
lib/Dieta/lista_codigo.rb

Overview

Estructura representando el nodo de una lista simplemente enlazada

Instance Attribute Summary collapse

Instance Attribute Details

#nextObject

Returns the value of attribute next

Returns:

  • (Object)

    the current value of next



4
5
6
# File 'lib/Dieta/lista_codigo.rb', line 4

def next
  @next
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



4
5
6
# File 'lib/Dieta/lista_codigo.rb', line 4

def value
  @value
end