Class: Node
- Inherits:
-
Struct
- Object
- Struct
- Node
- Defined in:
- lib/Dieta/lista_codigo.rb
Overview
Estructura representando el nodo de una lista simplemente enlazada
Instance Attribute Summary collapse
-
#next ⇒ Object
Returns the value of attribute next.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#next ⇒ Object
Returns the value of attribute next
4 5 6 |
# File 'lib/Dieta/lista_codigo.rb', line 4 def next @next end |
#value ⇒ Object
Returns the value of attribute value
4 5 6 |
# File 'lib/Dieta/lista_codigo.rb', line 4 def value @value end |